个人小体会登记
文章平均质量分 53
glen2013
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
判断素数(101到200的数)
public boolean isPrimeNum(int x){ boolean flag=true; for(int j=2;j if(x%j==0) { flag=false; break;} else continue; } return flag; }原创 2014-04-29 17:16:48 · 566 阅读 · 0 评论 -
分解因数
public class Factorization04 { public static void main(String[] args) { Factorization04 f=new Factorization04(); Scanner s=new Scanner(System.in); int input=s.nextInt(); System.转载 2014-04-30 13:14:51 · 556 阅读 · 0 评论 -
华为西安2015实习生机试题基础题--------求输入的五个数字中频率最高的,输出数字和次数
package test; import java.util.Scanner; public class Main { public static void main(String[] args) { int a = 0; int b = 0; int c = 0; int d = 0; int e = 0; int f = 0; int g = 0;原创 2014-04-30 19:10:01 · 1107 阅读 · 0 评论
分享