我有一個家庭作業,我有點麻煩。我似乎沒有錯誤,但是當我運行程序和輸入文本....沒有任何反應。簡單程序的輸入/輸出問題。
例如,爲了測試它,我通常會放入「羅伯遜,鮑勃約翰」,然後回車。誰能幫我這個?
#include <iostream>
#include <string>
using namespace std;
int main() {
//Title and instructions
cout << "This program will output your name in first-to-last order!" << endl;
cout << "Please type your name in the following manner: last, first middle."; << endl;
//Declare the strings being used
string firstName;
string middleName;
string lastName;
//Put user input into strings, ignore the comma
cin >> lastName >> firstName >> middleName >> endl;
cin.ignore(',');
//Output the name in first-to-last order
cout << "Your name is: " << first <<' '<< middle <<' '<< last << endl;
//Pause before exiting
return 0;
}
此代碼不能編譯。如果您需要我們的幫助,請告訴我們真實的代碼。 – Beta
'//退出之前暫停返回0;' - 這不是暫停,而是[返回代碼](http://en.wikipedia.org/wiki/Exit_status)。 – soon