判断一个数是不是素数

Copyright (c) 2012, 烟台大学计算机学院       
All rights reserved.       
作    者:  刘元龙     
完成日期:2012 年11  月  7日       
版 本 号:v1.0       
输入描述:判断一个数是不是素数
问题描述:利用穷举法输出所有的方案     
程序输出:穷举法
#include <iostream>
#include <cmath>
using namespace std;
int main ()
{
	double x,y,z,n;
	cout<<"请输入一个正整数"<<endl;
	cin>>x;
      y=int(sqrt(x));
	for(z=2;z<=y;z++)
	{
		n==x/z;
		if(n=0)
			break;
	}
	cout<<"不是素数"<<endl;
	return 0;
}


 

运行结果:

 

 

判断一个数是不是素数_第1张图片

你可能感兴趣的:(判断一个数是不是素数)