我在嘗試學習C++,一個練習是構建一個命令行工具,該工具接受用戶輸入並將其存儲在char數組中,直到用戶輸入空行。我認爲我的骷髏是正確的,但無論出於何種原因,我的這段時間都在持續。我的代碼如下:針對 n的C++測試 n
char a[256];
//while the first character isn't a new line
while (a[0] != '\n') {
//get the char array
cin >> a;
cout << a;
}
任何幫助將不勝感激。
如果你真的想學習C++,請放下你正在使用的任何教程,併購買一本教你如何正確使用字符串的書(http:// jcatki。 no-ip.org/fncpp/Resources)。 – 2012-02-11 15:43:45