標題:
因數分解 (一)
[打印本頁]
作者:
tonyh
時間:
2015-6-26 20:45
標題:
因數分解 (一)
本帖最後由 tonyh 於 2015-6-26 21:32 編輯
設計一小程式, 使能快速列出任一正整數的所有因數, 參考執行畫面如下:
[attach]1285[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int x;
cout<<"請輸入一正整數: ";
cin>>x;
cout<<x<<"的因數有: ";
for(int i=1; i<=x; i++)
{
if(x%i==0)
cout<<i<<" ";
}
cout<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-6-26 21:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int x,num;
cout<<"請輸入一個數 ";
cin>>x;
cout<<x<<"的因數有: ";
for(int i=1; i<=x; i++){
num=x%i;
if(num == 0)
cout<<i<<" ";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-6-28 13:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int x;
cout<<"請輸入一正整數: ";
cin>>x;
cout<<x<<"的因數有: ";
for(int i=1; i<=x; i++)
{
if(x%i==0)
cout<<i<<" ";
}
cout<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-7-7 16:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int x;
cout<<"請輸入一正整數: ";
cin>>x;
if(x<1)
{
cout<<"不是說<正整數>了嗎"<<endl;
cout<<"錯誤! 錯誤!"<<endl<<endl;
}
else
{
cout<<x<<"的因數有: ";
for(int i=1; i<=x; i++)
{
if(x%i==0)
cout<<i<<" ";
}
cout<<endl<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2