標題:
因數分解 (一)
[打印本頁]
作者:
tonyh
時間:
2019-10-25 20:10
標題:
因數分解 (一)
本帖最後由 tonyh 於 2019-10-25 20:34 編輯
設計一小程式, 使能快速列出任一正整數的所有因數, 參考執行畫面如下:
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int n;
cout<<"請輸入一個正整數: ";
cin>>n;
cout<<n<<"的因數有: ";
for(int i=1; i<=n; i++)
{
if(n%i==0)
cout<<i<<" ";
}
cout<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2019-10-25 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"輸入一數";
cin>>a;
cout<<a<<"的因數有";
for(int s=1; s<=a; s++)
{
if(a%s==0)
{
cout<<s<<" "<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
施褕均
時間:
2019-10-25 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
re:
int n;
cout<<"請輸入一個正整數: ";
cin>>n;
cout<<n<<"的質因數有: ";
for(int i=1; i<=n; i++)
{
if(n%i==0)
cout<<i<<" ";
}
cout<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2019-10-25 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int n;
cout<<"請輸入一個正整數: ";
cin>>n;
cout<<n<<"的因數有: ";
for(int i=1; i<=n; i++)
{ if(n%i==0)
cout<<i<<" ";
}
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-10-25 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n;
re:
cout<<"請輸入一個正整數: ";
cin>>n;
cout<<n<<"的因數有: ";
for(int i=1; i<=n; i++)
{
if(n%i==0)
cout<<i<<" ";
}
cout<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
余有晉
時間:
2019-10-25 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
Iamfish:
int n;
cout<<"請輸謹慎的入一個正整數: ";
cin>>n;
cout<<n<<"的因數有: ";
for(int i=1; i<=n; i++)
{
if(n%i==0)
cout<<i<<" ";
}
cout<<endl<<endl;
goto Iamfish;
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2019-10-25 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int pig;
re:
cout<<"請輸入一個整數";
cin>>pig;
cout<<pig<<"的因數有";
for(int i=1;i<=pig;i++)
{
if(pig%i==0)
cout<<i<<" ";
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
余有晉
時間:
2019-10-25 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
Iamfish:
int n;
cout<<"請輸謹慎的入一個超級宇宙霹靂無敵正整數: ";
cin>>n;
cout<<n<<"的超級宇宙霹靂無敵因數有: ";
for(int i=1; i<=n; i++)
{
if(n%i==0)
cout<<i<<" ";
}
cout<<endl<<endl;
goto Iamfish;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2019-10-25 20:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"輸入一正整數: ";
cin>>a;
cout<<a<<"的因數: ";
for(int b=1; b<=a; b++)
{
if(a%b==0)
{
cout<<b;
}
}
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2019-10-25 20:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int n=0;
cout<<"請輸入一個正整數: ";
cin>>n;
cout<<n<<"的因數有: ";
for(int i=1; i<=n; i++)
{
if(n%i==0)
cout<<i<<" ";
}
cout<<endl;
cout<<endl;
goto re;
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2019-10-25 20:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int n;
cout<<"請輸入一正整數: ";
cin>>n;
cout<<n<<"的因數有: ";
for(int i=1; i<=n; i++)
{
if(n%i==0)
cout<<i<<" ";
}
cout<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2019-10-25 20:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x;
cout<<"請輸入一個數: ";
cin>>x;
for(int y=1; y<=x; y++)
{
if(x%y==0)
cout<<y<<endl;
}
system("pause");
goto re;
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-10-25 20:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n, k=0;
re:
cout<<"請輸入一個正整數: ";
cin>>n;
cout<<n<<"的因數有: ";
for(int i=1; i<=n; i++)
{
if(n%i==0)
{
cout<<i<<" ";
k++;
}
}
cout<<"有"<<k<<"個因數"<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2