標題:
[隨堂測驗] while 迴圈 (四) - 九九乘法表
[打印本頁]
作者:
方浩葦
時間:
2024-6-28 16:17
標題:
[隨堂測驗] while 迴圈 (四) - 九九乘法表
利用 while 迴圈列印出如下排列之九九乘法表:
本帖隱藏的內容需要回復才可以瀏覽
作者:
高湘庭
時間:
2024-6-29 13:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int i=1;
while(i<=9)
{
int j=1;
while(j<=9){
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
j++;
}
cout<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
李唯銘
時間:
2024-6-29 14:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1, j=1;
while(i<=9){
while(j<=9){
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
j++;
}
j-=9;
i++;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-6-29 15:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int i=1;
while(i<=9){
int j=1;
while(j<=9){
cout<<i<<"*"<<j<<"="<<i*j;
cout<<"\t";
j++;
}
cout<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-6-29 16:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
j++;
}
cout<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-6-29 16:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
j++;
}
i++;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林少謙
時間:
2024-6-30 20:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1,j=1;
while(i<=9)
{
while(j<=9)
{
cout<<i<<"*"<<j<<"="<<i*j<<" ";
j++;
}
cout<<endl;
j=1;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
李偈睿
時間:
2024-7-13 15:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
j++;
}
cout<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2