0

我需要为家庭作业编写一些程序,但是字符串输入有一些问题。

问题是我不能做 2 >= 输入,它只是跳过它。我不知道为什么。我希望有人可以解释我。

我的代码:

for (int f1=0; f1<5; f1++) {
    temp_st = new Schulernoten();
    cout << "Name eingabe: ";

    name = "\n";
    getline(cin, name);
    temp_st->set_name(name);

    // note for informatik
    cout << endl << "Note Informatik eingabe: ";
    cin >> note;
    while (temp_st->check_note(note)) {
        cout << "Falsch eingabe: ";
        cin >> note;
    }
    temp_st->set_note_inf(note);

    // note for math
    cout << endl << "Note Math eingabe: ";
    cin >> note;
    while (temp_st->check_note(note)) {
        cout << "Falsch eingabe: ";
        cin >> note;
    }
    temp_st->set_note_mat(note);

    // ausdrucken
    cout << temp_st->get_name() << endl << temp_st->get_note_inf() << endl << temp_st->get_note_mat() << endl << endl;
}

我的输出示例:

Name eingabe: Depeche Soul

Note Informatik eingabe: 1

Note Math eingabe: 1
Depeche Soul
1
1

Name eingabe: 
Note Informatik eingabe: 2

Note Math eingabe: 1

2
1

Name eingabe: 
Note Informatik eingabe:

如您所见,第一个输入工作正常,然后它只是啜饮留下空白空间。

我该如何纠正?谢谢

4

1 回答 1

0

好,我知道了。我忘了冲洗cin>>的。

这是更正的代码:

for (int f1=0; f1<5; f1++) {
    temp_st = new Schulernoten();
    cout << "Name eingabe: ";

    name = "\n";
    getline(cin, name);
    temp_st->set_name(name);

    // note for informatik
    cout << endl << "Note Informatik eingabe: ";
    cin >> note;
    cin.ignore();
    while (temp_st->check_note(note)) {
        cout << "Falsch eingabe: ";
        cin >> note;
        cin.ignore();
    }

    temp_st->set_note_inf(note);

    // note for math
    cout << endl << "Note Math eingabe: ";
    cin >> note;
    cin.ignore();
    while (temp_st->check_note(note)) {
        cout << "Falsch eingabe: ";
        cin >> note;
        cin.ignore();
    }
    temp_st->set_note_mat(note);

    // ausdrucken
    cout << temp_st->get_name() << endl << temp_st->get_note_inf() << endl << temp_st->get_note_mat() << endl << endl;
}
于 2013-11-15T10:15:09.470 回答