/*********************************************************************
*Program Name : CSC 110 - 003 Store Unknown Number of Values
*Author : Anthony Small
*Due Date : Nov\17\09
*Course/Section : CSC 110 - 003
*Program Description: Store Unknown Number of Values in an Array
*
*BEGIN Lab 7 - CSC110-003 Store Unknown Number of Values
* init Array to five
* init Count to Zero
* Get First Value or Quit
* WHILE (Value is not Quit)
* Store Value into Arry
* Add One to Count
* IF (Array is Full)
* Set Value to Quit
* Cout Full Message
* ELSE Get Next Value or Quit
* End IF
* END WHILE
* FOR (Set Value in the Array)
* Display Value
* END FOR
*End Lab 7 - Store Unknown Number of Values
*********************************************************************/
#include <iostream>
#include <iomanip>
//#include <stdlib>
#include <ctime> //or <ctime>
using namespace std;
int main()
{
//local constants
const int Quit = -1; //Sentinal value
const int SIZE = 5; //Max number of inputs
//local variables
int Num ;
int Count=0;
int Array [SIZE];
//******************************************************************/
// Display Input
cout << "Input first Number or Quit\n";
cin >> Num;
while (Num != Quit);
Array [0] = Num; //Store number into array
Count++; //Add one to count
if (Count==SIZE-1)
{
(Num = Quit);
cout <<"Array is full";
}
else cout <<"Enter next number or quit\n";
cin>>Num; //Input next number
for (int pos = 0;pos < SIZE; pos++)
cout << Array [pos];
return 0;
//end main program
}
0
A
回答
3
Hint #1 You need to add braces for the while loop... (and remove the semi-column) Hint #2 You need to use a different subscript (other that systematically 0 for storing into Array.
7
你實際上意味着:
while (Num != Quit)
{
// Code here...
}
1
2
看一看行
while (Num != Quit);
想想也
Array [0] = Num;
會在一個循環中做什麼
你怎麼看待下一個輸出/行動將在
cout <<"Array is full"
縮進,括號等需要清理,使這做你想做的。
+0
亞仍然在風格程序應該停止後「數組已滿」 – anthony 2009-11-18 03:52:04
相關問題
- 1. 新手需要幫助! !
- 2. 新手需要幫助 - Lucene
- 3. SAS新手 - 需要幫助入門
- 4. 我需要幫助搞清楚我做錯了什麼
- 5. Android〜如何建立找到我的手機〜需要幫助〜〜〜〜
- 6. 需要幫助找出爲什麼我得到這個分段錯誤
- 7. 幫助我找到錯誤
- 8. 需要幫助瞭解我什麼時候需要SSL證書
- 9. 我需要幫助輸入塊文件到MMAP
- 10. 需要幫助,我的代碼有一個錯誤,我找不到
- 11. 我需要幫助解決一下把手幫手的NodeJS
- 12. PHP新手幫助:其他如果 - 我做錯了什麼?
- 13. 我需要幫助找到PowerShell腳本中的錯誤
- 14. 我需要幫助,試圖創建停止標誌
- 15. 需要幫助搞清楚什麼是錯我的代碼
- 16. 需要幫助搞清楚什麼是錯我的Python代碼
- 17. 需要幫助來停止BackgroundWorker線程
- 18. 需要幫助已停止工作
- 19. 需要幫助停止corona的功能
- 20. 我需要幫助,爲什麼我會得到NPE以及如何在播放時停止剪輯
- 21. 需要幫助尋找什麼阻止文本選擇腳本
- 22. 我需要幫助找到我的內存泄漏使用MAT
- 23. 我需要幫助在SQL查詢中輸入以下輸出
- 24. 我非常需要幫助文件輸入/輸出在java
- 25. 需要幫助來確定爲什麼我的數組沒有保存輸入?
- 26. C++錯誤我需要幫助嗎?
- 27. 我需要這個錯誤幫助:java.lang.NoSuchMethodError
- 28. 需要幫助來創建c#bubblesort。到目前爲止我有什麼問題?
- 29. 我需要幫助(邏輯)
- 30. 我需要浮點幫助
請刪除/編輯它以使其更具可讀性,否則您可能會被下調至編碼器地獄。 – 2009-11-18 03:23:55
您是否在編譯時打開了警告? – 2009-11-18 03:27:40
您是否嘗試過調試?正如前面提到的那樣,清理它並提供迄今爲止嘗試的更多細節。記住,你只會在這裏向正確的方向推動。你不會讓某人爲你做功課。 – MadMurf 2009-11-18 03:28:35