0
這是我到目前爲止所做的。我一直在C++ shell上測試它,它給我錯誤。使用if,then語句的問題
#include <iostream>
#include <string>
int main() {
cout << "Enter a number between 3 and 12: ";
int n;
cin >> n;
if(n>=3 && n<=12)
cout<<"Good number."endl;
else
cout<<"Bad number"endl;
return 0; //indicates success
}//end of main
你的意思是'的std :: endl'? :) – CompuChip
@CompuChip的權利,修復它:) – izlin
你也可以提到'std :: endl'對於大多數情況下是過度殺傷,而''\ n''通常是更好的選擇。 – Rakete1111