C++ 1013 数素数(20 分)

C++ 1013 数素数(20 分)_第1张图片

#include
#include
using namespace std;


int main()
{
	int i=2,j,cnt=0;
	bool isnum;
	int m,n;
	cin>>m>>n;
	
	while(cnt!=n)
	{
		isnum=true;
		for(j=2;j<=sqrt(i);j++)
		{
		  if (i%j ==0) 
		  {
		    isnum =false;
		    break;
		  }
		}
		if(isnum) 
		{
		  cnt++;
		  
		  //第一种输出方式
		  if(cnt>=m&&cnt=m&&cnt=m&&cnt<=n) cout<=m&&(cnt-m+1)%10!=0) cout<<" ";
			//if((cnt-m+1)%10==0&&cnt>=m) cout<

 

你可能感兴趣的:(编程题)