標題:
質數 (一) - 判斷是否為質數
[打印本頁]
作者:
張翼安
時間:
2016-1-22 23:59
標題:
質數 (一) - 判斷是否為質數
作者:
任立宇
時間:
2016-1-23 11:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
cout<<"請輸入一正整數">>;
int x ,=2
cin>> x ;
whit( x >=i);
if(x%i==0)
break;
} else if(x==1)
}
i++>;
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2016-1-23 12:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,i=2;
cout<<"輸入x的值"<<endl;
cin>>x;
while(x>=i)
{
if(x==i)
{
cout<<x<<"是質數"<<endl;
}
else if((x%i)==0)
{
cout<<x<<"不是質數"<<endl;
break;
}
i++;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2016-1-27 15:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,i=2;
cout<<"輸入x的值"<<endl;
cin>>x;
while(x>=i)
{
if(x==i)
{
cout<<x<<"是質數"<<endl;
}
else if((x%i)==0)
{
cout<<x<<"不是質數"<<endl;
break;
}
i++;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2016-1-30 10:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,i=2;
cout<<"輸入x的值"<<endl;
cin>>x;
while(x>=i)
{
if(x==i)
{
cout<<x<<"是質數"<<endl;
}
else if((x%i)==0)
{
cout<<x<<"不是質數"<<endl;
break;
}
i++;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2016-2-4 17:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
int x;
cout<<"***質數驗證機***<<endl<<endl;
re;
int sum=0;
cout<<"請輸入一正整數":;
cin>>x;
for(int i=1; i<=x;i+)
{
if(x%i=0)
sum ++;
}
cout<<x;
if(sum=2)
cout<<"是";
else
cout<<"不是";
cout<<"質數"<<endl;
goto re;
system("pause");
return 0;
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2