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

請問一下如何用結構(stract)製作9*9乘法表  

不知道怎麼寫的人.....

2007-05-10 17:04:19 · 1 個解答 · 發問者 啦啦啦 1 in 電腦與網際網路 程式設計

1 個解答

作法:
建立一個結構,經由迴圈將計算結果儲存到結構,再經由迴圈將結構儲存的數值顯示出來。
//Power by Visual Studio 2005
#include
#include
struct table{
int Result[9];
}Table[8];
int main(int argc, char* argv[]){
//==========START==========//
int i,j;
for(i=0;i<8;i++){
for(j=0;j<9;j++){
Table[i].Result[j]=(i+2)*(j+1);
}
}
for(i=0;i<8;i++){
for(j=0;j<9;j++){
printf("%d * %d = %d\n",i+2,j+1,Table[i].Result[j]);
}
system("PAUSE");
}
printf("Program Terminated...\n");
//==========END==========//
system("PAUSE");
return 0;
}

2007-05-10 18:04:36 · answer #1 · answered by Big_John-tw 7 · 0 0

fedest.com, questions and answers