標題:
倍數運算
[打印本頁]
作者:
游東祥
時間:
2013-9-7 17:48
標題:
倍數運算
1. 讓使用者輸入要顯示的倍數2. 讓使用者輸入顯示幾個倍數
3. 顯示倍數列表
作者:
周雍程
時間:
2013-9-7 17:54
本帖最後由 周雍程 於 2013-9-7 17:55 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int b;
cout << "請輸入倍數基底(2~15):";
cin >> b ;
if (b > 50)
{
b = 50;
}
else if (b < 2)
{
b = 2;
}
int c;
cout << "請輸入顯示個數(1~15):";
cin >> c ;
if (b > 15)
{
c = 15;
}
else if (b < 1)
{
c = 1;
}
for (int i=1 ; i <= c ;i++)
{
cout << b*i <<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-9-7 17:54
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int b;
cout<<"輸入倍數基底:";
cin>> b;
if (b > 50)
{
b=50;
}
else if (b < 2)
{
b=2;
}
int c;
cout<<"輸入顯示個數:";
cin>> c;
for(int i=1;i<=c;i++)
{
cout<< b*i <<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-9-7 17:54
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int b;
cout << "請輸入倍數基底(2~50):" ;
cin >> b;
if ( b > 50)
{
b = 50;
}
else if ( b < 2)
{
b = 2;
}
int c;
cout << "請輸入顯示數量(1~15):" ;
cin >> c;
if ( c > 15)
{
c = 15;
}
else if ( c < 1)
{
b = 1;
}
for (int i = 1 ; i<= c ;i++)
{
cout << b * i << endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
李彥彤
時間:
2013-9-7 17:55
本帖最後由 李彥彤 於 2013-9-7 17:59 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int b;
cout << "請輸入倍數基底(2~50):" ;
cin >> b;
if ( b > 50)
{
b = 50;
}
else if ( b < 2)
{
b = 2;
}
int c;
cout << "請輸入顯示個數(1~15):" ;
cin >> c;
if ( c > 15)
{
c = 15;
}
else if ( c < 1)
{
b = 1;
}
for (int i = 1 ; i<= c ;i++)
{
cout << b * i << endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-9-7 17:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int b;
cout<<"請輸入倍數基底(1~50):";
cin>>b;
int c;
cout<<"請輸入顯示個數(1~15):";
cin>>c;
if(b>50)
{
b=50;
}
if(b<2)
{
b=2;
}
if(c>15)
{
b=15;
}
if(c<2)
{
c=2;
}
else if(c>15)
{
c=15;
}
for (int i=1;i<c;i++)
{
cout<<b*i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-9-7 17:57
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int b ;
cout<<"請輸入倍數基底(2~50):";
cin >> b;
if (b>50)
{
b=50;
}
eise if (b<2)
{
b=2;
}
int c ;
cout<<"請輸入顯示個數(1~15):";
cin >> c;
if (c>15)
{
c=15;
}
eise if(c<1)
{
c=1;
}
for(int i=1;i<=c;i++)
{
cout << b*i << endl;
}
system ("pause");
return 0 ;
}
複製代碼
作者:
劉得旗
時間:
2013-9-7 18:00
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int b;
cout<<"輸入倍數基底(2-50):";
cin>> b;
if (b > 50)
{
b=50;
}
else if (b < 2)
{
b=2;
}
int c;
cout<<"輸入顯示個數(1-15):";
cin>> c;
if (c < 1)
{
c=1;
}
else if (c > 15)
{
c=15;
}
for(int i=1;i<=c;i++)
{
cout<< b*i <<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2