標題:
[作業]質數 (二) - 1000以內的質數有哪些?
[打印本頁]
作者:
張翼安
時間:
2016-1-23 00:00
標題:
[作業]質數 (二) - 1000以內的質數有哪些?
本帖最後由 張翼安 於 2016-1-30 11:04 編輯
作者:
吳承勳
時間:
2016-1-30 10:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int x = 2; x <= 1000; x++)
{
int i = 2;
while(x >= i)
{
if(x == i)
{
cout << x <<",";
}
else if((x % i)== 0)
{
break;
}
i++;
}
}
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2016-1-30 11:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int x=2 ; x <= 1000 ; x++){
int i=2 ;
while (x >= i ){
if(x==i)
{
cout<<x<<"是質數"<<endl;
}
else if((x%i)==0)
{
cout<<x<<"不是質數"<<endl;
break;
}
i++;
}
}
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2016-1-30 11:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int x=2;x<=1000;x++)
{
int i=2;
while(x>=i)
{
if(x==i)
{
cout<<x<<endl;
}
else if((x%i)==0)
{
break;
}
}
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2016-1-30 11:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int x = 2; x <= 1000; x++)
{
int i=2;
while(x >= i)
{
if(x == i)
{
cout << x <<"";
}
else if((x % i)== 0)
{
break;
}
i++;
}
system("pause");
} return 0;
}
複製代碼
作者:
蔡季樺
時間:
2016-1-30 11:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int x=2;x<=1000;x++)
{
int i=2;
while(x>=i)
{
if(x==i)
{
cout<<x<<"\t"<<endl;
}
else if((x%i)==0)
{
break;
}
i++;
}
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2