0

次の形式のファイルを読んでいます

1001    16000     300    12.50
2002    24000     360    10.50
3003    30000     300     9.50

項目は次のとおりです。ローンID、元本、月、利率。

入力文字列ストリームで何が間違っているのかわかりませんが、ローンIDのみが正しく読み取られるため、値を正しく読み取っていません。他のすべてはゼロです。申し訳ありませんが、これは宿題ですが、私のエラーを特定するのを手伝ってくれるかどうか知りたかっただけです。

if( inputstream.is_open() ){

        /** print the results **/
        cout << fixed << showpoint << setprecision(2);
        cout << "ID " << "\tPrincipal" << "\tDuration" << "\tInterest" << "\tPayment" <<"\tTotal Payment" << endl;
        cout << "---------------------------------------------------------------------------------------------" << endl;

        /** assign line read while we haven't reached end of file **/
        string line;
        istringstream instream;
        while( inputstream >> line ){
            instream.clear();
            instream.str(line);

            /** assing values **/
            instream >> loanid >> principal >> duration >> interest;


            /** compute monthly payment **/
            double ratem = interest / 1200.0;
            double expm = (1.0 + ratem);
            payment = (ratem * pow(expm, duration) * principal) / (pow(expm, duration) - 1.0);

            /** computer total payment **/
            totalPayment = payment * duration;

            /** print out calculations **/
            cout << loanid << "\t$" << principal <<"\t" << duration << "mo" << "\t" << interest << "\t$" << payment << "\t$" << totalPayment << endl;

        }
    }
4

1 に答える 1

3

あなたは行ごとに読んでいません。条件を次のように置き換えます

while( getline(inputstream, line) )

使用operator>>すると、最初の単語のみが抽出されlineます。

于 2010-04-17T16:39:21.520 に答える