解题思路:
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class C1199 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { int n = sc.nextInt(), b = 0, count = 0; List<Integer> list = new ArrayList<Integer>(); for(int a = 3; a < n; a+=2){ if(!list.contains(a) && isSu(a)){ b = n - a; if(isSu(b)){ //System.out.printf("%d=%d+%d\n", n, a, b); count++; list.add(b); } } } System.out.println(count); } sc.close(); } private static boolean isSu(int k){ if(k < 2) return false; for(int i = 2; i*i <= k; i++){ if(k % i == 0) return false; } return true; } }
注意事项:
参考代码:
0.0分
1 人评分
点我有惊喜!你懂得!浏览:2114 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:539 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:943 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:590 |
核桃的数量 (C语言代码)浏览:726 |
C二级辅导-公约公倍 (C语言代码)浏览:537 |
数组输出 (C语言代码)浏览:749 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:765 |
盐水的故事 (C语言代码)浏览:1602 |
班级人数 (C语言代码)浏览:980 |