void main (void)
{
char name [2] [30], number [2] [10];
char << "Please type your first name, a blank, and last name) << endl;
cin >> name;
cout << "Name=" <<name << endl;
cout << "Please type a number, press the return key, and another number << endl;
cin >> number [0] >> endl;
cout << number << endl;
}
-5
A
回答
5
太多提及,但我們不是在這裏充當家庭作業服務。檢查你的編譯器的輸出,那麼解決這些問題一次一個:
qq.cpp:4:13: warning: missing terminating " character
qq.cpp:4: error: missing terminating " character
qq.cpp:7:13: warning: missing terminating " character
qq.cpp:7: error: missing terminating " character
qq.cpp:1: error: ‘::main’ must return ‘int’
qq.cpp: In function ‘int main()’:
qq.cpp:4: error: expected unqualified-id before ‘<<’ token
qq.cpp:6: error: ‘cout’ was not declared in this scope
qq.cpp:6: error: ‘endl’ was not declared in this scope
qq.cpp:8: error: ‘cin’ was not declared in this scope
在最低限度:
- 沒有
using
條款或std::
前綴。 char
不是流。- 對某些字符串文字沒有關閉引號。
1
有在"Please type your first name, a blank, and last name)
+0
也許有太多的事情要抱怨。 – Phonon 2011-05-19 13:51:48
1
末括號,而不是一個雙引號你不結束與「在
char << "Please type your first name, a blank, and last name) << endl;
和
cout << "Please type a number, press the return key, and another number << endl;
字符串
它應該是:
int main (void)
{
char name [2] [30], number [2] [10];
char << "Please type your first name, a blank, and last name)" << endl;
cin >> name;
cout << "Name=" <<name << endl;
cout << "Please type a number, press the return key, and another number" << endl;
cin >> number [0] >> endl;
cout << number << endl;
return 0;
}
1
char << "Please type your first name, a blank, and last name) << endl;
和
cout << "Please type a number, press the return key, and another number << endl;
都缺少結束雙引號
char << "Please type your first name, a blank, and last name)" << endl;
cout << "Please type a number, press the return key, and another number" << endl
+0
第一個可能有_else_錯誤:-)提示,'char'是一個關鍵字。 – paxdiablo 2011-05-19 13:55:48
相關問題
- 1. 這段代碼的錯誤是什麼?
- 2. 這段代碼的錯誤是什麼?
- 3. 這段代碼中的錯誤是什麼,爲什麼?
- 4. 這段代碼中導致段錯誤的原因是什麼?
- 5. javascript - 這段代碼有什麼錯誤?
- 6. 這段代碼有什麼錯誤?
- 7. 這段代碼有什麼錯誤?
- 8. 什麼錯誤++這段代碼在C
- 9. 這段代碼中運行時錯誤的原因是什麼?
- 10. 這段代碼中的錯誤檢查點是什麼?
- 11. 這段代碼中的錯誤是什麼?
- 12. 這段代碼中的錯誤是什麼?
- 13. 這段代碼中的錯誤是什麼?
- 14. 這段代碼中的變量可見性錯誤是什麼?
- 15. 這段代碼在Python中的語法錯誤是什麼?
- 16. 這段代碼中的錯誤是什麼?
- 17. 這段代碼中導致ArrayIndexOutOfBounds錯誤的原因是什麼?
- 18. 這個sql代碼段中的語法錯誤是什麼?
- 19. 這段代碼中的指針錯誤是什麼?
- 20. 這段代碼中的錯誤是什麼?
- 21. 這段代碼是什麼?
- 22. 爲什麼編程MongoDB中運行這段代碼是錯誤
- 23. 這段代碼中的T是什麼
- 24. 這段代碼中的memPtr是什麼?
- 25. 什麼是這個代碼錯誤
- 26. 這是什麼錯誤代碼? -2147220717(0x80040313)
- 27. 什麼是導致此C代碼中的段錯誤錯誤?
- 28. 這段java代碼爲什麼會給我這麼多錯誤?
- 29. 這段代碼中的IEventRepository是什麼? Resolver.resolve()是做什麼的?
- 30. 這段代碼的目的是什麼?
我發現了錯誤:'無效的主要(無效)' – 2011-05-19 13:50:53
這是新定義的經典範例「過於本土化」:這個問題不可能永遠幫助未來的訪問者;它只與一個小的地理區域,一個特定的時刻或一個非常狹窄的情況有關,而這種情況通常不適用於全球互聯網用戶。 – paxdiablo 2011-05-19 13:53:43
還有人還在乎回答他們? :-) – 2011-05-19 14:03:03