標題:
[訂正]巢狀迴圈 - 九九乘法表 (二)
[打印本頁]
作者:
陳育霖
時間:
2023-11-11 15:16
標題:
[訂正]巢狀迴圈 - 九九乘法表 (二)
使左上角顯示 9*9=81 右下角顯示 1*1=1
作者:
李冠霖
時間:
2023-11-11 20:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=9; i>0;i-- )
{
for(int l=9; l>0;l-- )
{
cout<<i<<"*"<<l<<"="<<i*l<<"\t";
}
cout<<"\n";
}
system("pause");
return 0;
}
作者:
林靖庭
時間:
2023-11-11 20:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=9;i>0; i--)
{
for(int j=9;j>0; j--)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張淙鈞
時間:
2023-11-11 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=9; i>=1; i--)
{
for(int j=9; j>=1; j--)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2