用C++编写函数判别一个数是否是质数,在主程序中实现输入输出
用C++编写函数判别一个数是否是质数,在主程序中实现输入输出
日期:2017-09-08 05:38:31 人气:3
先定义整型变量n,输入n,通过判断函数判断,最后输出。
例如:
//参考代码如下:#include "iostream"#include "stdio.h" using namespace std; int fun(int n){//判断函数,是质数返回1,否则返回0 int ans =1; for(int i=2;i>n;//输入n if(fun(n))//判断输出 cout<&l