题解 1199: 哥德巴赫曾猜测

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

看看天才怎么写的

摘要:def isprime(x):     if x < 2:         return False     for i in range(2, int(x**0.5) + 1):    &

哥德巴赫曾猜测

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int fun(int n) {    if (n == 1) {        return 0;    }    for (int……

C语言解哥德巴赫曾猜测

摘要:解题思路:用函数表示素数注意事项:无参考代码:#include<stdio.h>int sushu(a){ int i = 0; int aaa = 0; for (i = 2; i < a; i++……