標題:
[作業] while 迴圈 - 九九乘法表
[打印本頁]
作者:
tonyh
時間:
2013-12-7 17:54
標題:
[作業] while 迴圈 - 九九乘法表
[attach]770[/attach]
使左上角顯示 9*9=81 右下角顯示 1*1=1
作者:
張彥承
時間:
2013-12-7 18:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i = 9;
while(i>=1)
{
int j=9;
while(j>=1)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
j--;
}
cout<<endl;
i--;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-12-7 18:03
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int i=9;
while(i>=1)
{
int j=9;
while (j>=1)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
j--;
}
cout<<endl;
i--;
}
system ("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-12-7 18:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=9;
while (i>=1)
{
int j=9;
while (j>=1)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
j--;
}
cout<<endl;
i--;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-12-7 18:06
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int j=9;
while (j>=1)
{
int i=9;
while (i>=1)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
i--;
}
cout<<endl;
j--;
}
system ("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-12-7 18:08
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int i=9;
while(i>=1)
{
int j=9;
while(j>=1)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
j--;
}
cout<<endl;
i--;
}
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-12-14 09:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=9;
while(i>=1)
{
int j=9;
while(j>=1)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
j=j-1;
}
cout<<endl;
i=i-1;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2