编写程序,输出100与300之间的所有素数.
3个回答
展开全部
#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int p=0;
int n=0
for (int i=100; i<=300;i++)
{
for(int a=2;a<=(i-1);a++)
{
if(i % a ==0)
{
p++;
}
}
if (p==0)
{
cout<<i<<endl;
n++;
}
p=0;
}
cout<<endl
<<"一共有"<<n<<"个素数"
<<endl
<<endl
<<"P.S:"<<endl
<<"1是否算素数还有争议"<<endl
<<endl
<<endl;
system("pause");
return 0;
}
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int p=0;
int n=0
for (int i=100; i<=300;i++)
{
for(int a=2;a<=(i-1);a++)
{
if(i % a ==0)
{
p++;
}
}
if (p==0)
{
cout<<i<<endl;
n++;
}
p=0;
}
cout<<endl
<<"一共有"<<n<<"个素数"
<<endl
<<endl
<<"P.S:"<<endl
<<"1是否算素数还有争议"<<endl
<<endl
<<endl;
system("pause");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
P:
var i:longint;
function pd(x:longint):boolean;
var i:longint;
begin
for i:=2 to trunc(sqrt(x)) do
if x mod i=0 then exit(false);
exit(true);
end;
begin
for i:=100 to 300 do
if pd(i) then write(i,' ');
writeln(#8);
end.
var i:longint;
function pd(x:longint):boolean;
var i:longint;
begin
for i:=2 to trunc(sqrt(x)) do
if x mod i=0 then exit(false);
exit(true);
end;
begin
for i:=100 to 300 do
if pd(i) then write(i,' ');
writeln(#8);
end.
参考资料: 我的大脑
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
什么语言?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询