博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
华为OJ平台——查找组成一个偶数最接近的两个素数
阅读量:5290 次
发布时间:2019-06-14

本文共 1448 字,大约阅读时间需要 4 分钟。

1 import java.util.Scanner; 2  3 /** 4  * 问题描述:任意一个偶数(大于2)都可以由2个素数组成,组成偶数的2个素数有很多种情况, 5  * 本题目要求输出组成指定偶数的两个素数差值最小的素数对,其中 5 < n <= 10000 6  * eg:输入20,输出7  13 7  */ 8 public class PrimePair { 9     10     public static void main(String[] args) {11         Scanner cin = new Scanner(System.in) ;        12         int n = cin.nextInt() ;13         cin.close();14         //简单判断输入的范围15         if(n%2 == 1 || n <= 5 || n > 10000){16             System.exit(-1);; ;17         }        18         findPrimePair(n) ;        19 20     }21 22     /**23      * 找出满足条件的素数对24      * @param n25      */26     private static void findPrimePair(int n) {27         for(int i = n/2-1 ; i > 0 ; i -= 2){28             if(judgePrime(i) && judgePrime(n-i)){29                 System.out.println(i) ;30                 System.out.println(n-i) ;31                 return ;32             }33         }            34     }35 36     /**37      * 判断一个整数是否是素数38      * @param x39      * @return true---素数   false---不是40      */41     private static boolean judgePrime(int x) {42         double end = x/2 ;43         if (x == 1) {44             return true;45         } else {46             for (int i = 2; i <= end; i++) {47                 if (x % i == 0) {48                     return false;49                 }50                 end = x / (i + 1.0);51             }52             return true;53         }54     }55 }

 

转载于:https://www.cnblogs.com/mukekeheart/p/5592318.html

你可能感兴趣的文章
activemq5.14+zookeeper3.4.9实现高可用
查看>>
TCP/IP详解学习笔记(3)IP协议ARP协议和RARP协议
查看>>
简单【用户输入验证】
查看>>
学android:直接用jdk来helloworld
查看>>
python tkinter GUI绘制,以及点击更新显示图片
查看>>
Spark基础脚本入门实践3:Pair RDD开发
查看>>
HDU4405--Aeroplane chess(概率dp)
查看>>
python使用easyinstall安装xlrd、xlwt、pandas等功能模块的方法
查看>>
CS0103: The name ‘Scripts’ does not exist in the current context解决方法
查看>>
20130330java基础学习笔记-语句_for循环嵌套练习2
查看>>
Spring面试题
查看>>
窥视SP2010--第一章节--SP2010开发者路线图
查看>>
MVC,MVP 和 MVVM 的图示,区别
查看>>
C语言栈的实现
查看>>
代码为什么需要重构
查看>>
TC SRM 593 DIV1 250
查看>>
SRM 628 DIV2
查看>>
2018-2019-2 20165314『网络对抗技术』Exp5:MSF基础应用
查看>>
统计单词,字符,和行
查看>>
jQuery垂直滑动切换焦点图
查看>>