解题思路:
注意事项:
参考代码:
#include <iostream>
#include <deque>
#include <algorithm>
#include <numeric>
#include <iterator>
#include <string>
#include <cmath>
#include <cstdlib>
#include <string.h>
using namespace std;
int f(int n)
{
int i=2;
for(i=2;i<n;i++)
{
if(n%i==0)
{
break;
}
}
if(n==i)
{
return 1;
}
else
{
return 0;
}
}
int main()
{
int n;
cin>>n;
if(f(n)==1)
{
cout<<"Y"<<endl;
}
else
{
cout<<"N"<<endl;
}
return 0;
}
0.0分
0 人评分
C语言训练-斐波纳契数列 (C语言代码)浏览:1272 |
不容易系列2 (C语言代码)浏览:641 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:1215 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:943 |
C语言程序设计教程(第三版)课后习题9.4 (C语言代码)浏览:724 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:654 |
C二级辅导-计负均正 (C语言代码)浏览:524 |
字符串比较 (C语言代码)浏览:770 |
C语言训练-自守数问题 (C语言代码)浏览:798 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:748 |