English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

main()
{
int total;
for(int i=1;i<10;i++)
{
total+=i;
}
cout<<"累加計算1~"<<<<"的執行結果為"< }

2007-06-22 15:39:40 · 4 個解答 · 發問者 羅小宏 1 in 電腦與網際網路 程式設計

4 個解答

#include
int main()
{
int total = 0;
for(int i=1; i <= 10; i++)
{
total+=i;
}
cout<<"累加計算1~"<< 10 <<"的執行結果為"< }

2007-06-22 16:07:03 · answer #1 · answered by 東邪無弓 7 · 0 0

#include
using namespace std;

int main(int argc, char* argv[])
{
int sum=0;
cout<<((11*10)>>1);
return 0;
}

2007-06-22 18:00:28 · answer #2 · answered by MrAYD 5 · 0 0

main()
{
int total=0;
for(int i=1;i<10;i++)
{
total+=i;
}
cout<<"累加計算1~"<<<<"的執行結果為"< }

2007-06-22 17:56:03 · answer #3 · answered by 翰翰兒 1 · 0 0

因為你的 total 變數沒有「歸零」!
可以在宣告時「歸零」:int total = 0
當然 total 的宣告要在迴圈外面。

2007-06-22 15:54:15 · answer #4 · answered by Big_John-tw 7 · 0 0

fedest.com, questions and answers