解题思路:
注意事项:
参考代码:
#include <cstdio> #include <cstring> #include <string> #include <cmath> #include <cctype> #include <functional> #include <iostream> #include <algorithm> using namespace std; int main() { int n; scanf("%d", &n); for(int i = 2; i <= floor(sqrt(n)+0.5); ++i) { if(n%2 == 0) { printf("0\n"); return 0; } } printf("1\n"); return 0; }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:677 |
小九九 (C语言代码)浏览:885 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:650 |
C语言训练-列出最简真分数序列* (C语言代码)浏览:543 |
C语言训练-自由落体问题 (C语言代码)浏览:1775 |
C语言训练-素数问题 (C语言代码)浏览:1065 |
回文数(一) (C语言代码)浏览:809 |
字符串对比 (C语言代码)浏览:1471 |
A+B for Input-Output Practice (V) (C语言代码)浏览:640 |
【亲和数】 (C语言代码)浏览:541 |