1

私は問題があります。Ints と Floats をテキスト ファイルに書き込みたいのですが、これを実行しようとするとうまくいきません。試してみると、テキスト ファイルに %d が表示されます。これが私のコードの一部です。

void controleformules::on_pushButton_4_clicked()
{
    QString str= ui->textEdit_2->toPlainText();

    QString filename= str+".txt";

    QFile file( filename );

    if ( file.open(QIODevice::ReadWrite) )
    {

         QTextStream stream( &file );
         stream << "U heeft nu deze 2 formules gekozen:
              Formule 1: %dx + %dy = %0.1f. 
              Formule 2: %dx + %dy = %d", x1Int, y1Int, r1Int, x2Int, y2Int, r2Int;

         stream << "eerst moet je in beide formules de x of de y elimeneren, wij doen de y eerst";

     }
 }

あなたが私を助けてくれることを願っています ティム・スミッツ

4

4 に答える 4