標題:
while 迴圈 (五) - 九九乘法表
[打印本頁]
作者:
tonyh
時間:
2013-12-7 17:20
標題:
while 迴圈 (五) - 九九乘法表
本帖最後由 tonyh 於 2013-12-7 17:41 編輯
[attach]769[/attach]
#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;
}
複製代碼
作者:
張峻瑋
時間:
2013-12-7 17:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=0;
while (i<=8)
{
i++;
int j=0;
while (j<=8)
{
j++;
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-12-7 17:37
#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;
}
複製代碼
作者:
張峻瑋
時間:
2013-12-7 17:37
#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;
}
複製代碼
作者:
張郁偵
時間:
2013-12-7 17:37
#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;
}
複製代碼
作者:
周雍程
時間:
2013-12-7 17:38
#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;
}
複製代碼
作者:
張彥承
時間:
2013-12-7 17:38
#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;
}
複製代碼
作者:
張郁庭
時間:
2013-12-7 17:39
#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;
}
複製代碼
作者:
劉得旗
時間:
2013-12-7 17:40
#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++;
}
cout<<"330~660的總和:"<<endl;
system("pause");
return 0;
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2