我目前正在學習通過使用網頁程序編寫C++,在那裏我正在做一門課程。現在,最近我得到了下面的練習:C++在循環中添加數字練習
不斷加在一起使用一段時間或do-while循環,使一個程序,要求用戶輸入數字,直到用戶輸入數字0
我寫了下面的代碼,希望它會帶來的行使結論:
#include <iostream>
using namespace std;
int main(void){
int sum = 0;
int number;
do
{
cout <<endl;
cin >> number;
sum += number;
cout << "The total so far is: " << sum << endl;
} while (number != 0);
cout << "The total is: " << sum << endl;
}
然而,當我運行的代碼我從網站的以下反饋(有兩個環節一個在左邊另一個在右邊):
Instructions of the exercise and Webpage feedback on the exercise
你能告訴我什麼我做錯了,或者你能提出替代解決方案,然後我提供的代碼?感謝您的任何反饋!
我想這不期待你用'cout << endl;'引入的額外換行符? – TartanLlama
你也應該打印'。'每個數字之後。 – Tempux
這工作正常在視覺工作室2013 –