我需要为家庭作业编写一些程序,但是字符串输入有一些问题。
问题是我不能做 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:
如您所见,第一个输入工作正常,然后它只是啜饮留下空白空间。
我该如何纠正?谢谢