標題:
質數 (一) - 判斷是否為質數
[打印本頁]
作者:
tonyh
時間:
2013-12-28 16:50
標題:
質數 (一) - 判斷是否為質數
本帖最後由 tonyh 於 2014-1-3 20:18 編輯
[attach]785[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"***天才兒童的質數驗證機***"<<endl<<endl;
re:
int a, n=0;
cout<<"請輸入一正整數: ";
cin>>a;
for(int i=1; i<=a; i++)
{
if(a%i==0)
n++;
}
if(n==2)
cout<<a<<"是個質數!"<<endl;
else
cout<<a<<"不是質數!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-12-28 17:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"***質數驗證機***"<<endl<<endl;
re:
int a, b=0;
cout<<"請輸入一個數: ";
cin>>a;
for(int i=1; i<=a; i++)
{
if(a%i==0)
b++;
}
if(b==2)
cout<<a<<"是個質數!"<<endl;
else
cout<<a<<"不是質數!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-12-28 17:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"***天才兒童的質數驗證機***"<<endl<<endl;
re:
int a, b=0;
cout<<"請輸入一正整數: ";
cin>>a;
for(int i=1; i<=a; i++)
{
if(a%i==0)
b++;
}
if(b==2)
{
cout<<a<<"是個質數!"<<endl;
}
else
{
cout<<a<<"不是質數!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-12-28 17:21
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
re:
int a,n=0;
cout<<"請輸入一正整數:";
cin>>a;
for(int i=1; i<=a; i++)
{
if(a%i==0)
n++;
}
if(n==2)
cout<<a<<"是質數!"<<endl;
else
cout<<a<<"不是質數!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-12-28 17:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
Jesus:
int a,n=0;
cout<<"請輸入一個正整數:"<<endl;
cin>>a;
for(int i=1;i<=a;i++)
{
if(a%i==0)
n++;
}
if(n==2)
cout<<a<<"是個質數"<<endl;
else
cout<<a<<"不是個質數"<<endl;
goto Jesus;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-12-28 17:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"質數驗證機"<<endl<<endl;
re:
int a, n=0;
cout<<"輸入一個整數:";
cin>>a;
for(int i=1; i<=a; i++)
{
if(a%i==0)
n++;
}
if(n==2)
cout<<a<<"是質數"<<endl;
else
cout<<a<<"不是質數"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2014-1-3 20:19
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
cout<<"***天才兒童的質數驗證機***"<<endl;
re:
int a,b=0;
cout<<"請輸入一正整數:";
cin>>a;
cout<<a<<"的因數有:";
for (int i=1; i<=a; i++)
{
if(a%i==0)
{
cout<<i<<" ";
b++;
}
}
cout<<endl<<"總共有"<<b<<"個!";
cout<<endl;
if(b==2)
{
cout<<a<<"是質數!"<<endl;
}else
{
cout<<a<<"不是質數!"<<endl;
}goto re;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-1-3 20:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"****天才兒童的質數驗證機****"<<endl;
re:
int a, n=0;
cout<<"請輸入一正整數: ";
cin>>a;
for(int i=1;i<=a;i++)
{
if(a%i==0)
n++;
}
if(n==2)
cout<<a<<"是一個質數!"<<endl;
else
cout<<a<<"不是一個質數!"<<endl;
goto re;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2