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

有誰可以幫我翻譯每一段ㄉ意思阿

#include
#include
using namespace std;
name();
sumation();
main()
{
name();
sumation();
cout<<"sin="< getchar();
}
name()
{
cout<<"學號:\\n";
cout<<"姓名:\\n";
}

sumation()
{
int i,iend,total;
cout<<"打入終值=";
cin>>iend;
getchar();
for(i=1;i<=iend;i++)
{
total+=i*i;
}
cout<<"1*1+2*2+....+"< getchar();
}

2006-11-12 03:21:48 · 2 個解答 · 發問者 銘德 3 in 電腦與網際網路 程式設計

2 個解答

include
#include
using namespace std;
name();
sumation();
main()
{
name(); /*執行name副程式*/
sumation();/*執行sumation副程式*/
cout<<"sin="< getchar();
}
name()
{
cout<<"學號:\n";/*畫面顯示學號,游標跳到下一行*/
cout<<"姓名:\n";/*畫面顯示學號,游標跳到下一行*/

}

sumation()
{
int i,iend,total;
cout<<"打入終值=";/*畫面顯示打入終值=";*/
cin>>iend; /*接受你輸入一個整數值 iend = 輸入的整數 */
getchar();/*等待接受任何字元*/
for(i=1;i<=iend;i++)
{
total+=i*i; /* total = total + i*i
}
/* 這個 for loop 執行結果 total = 1*1 + 2*2 ........iend*iend &/
/*假設你數輸入 10 則以下的 iend就會顯數10*/
cout<<"1*1+2*2+....+"< /*顯示 1*1+2*2+....+ 10*10 = total的運算值*/
getchar();/*等待接受任何字元*/
}

2006-11-12 04:32:34 · answer #1 · answered by 過路人 4 · 0 0

明天就要考試?? ~(= =|||)~

2006-11-12 03:46:44 · answer #2 · answered by Big_John-tw 7 · 0 0

fedest.com, questions and answers