一个偶数总能表示为两个素数之和. public class Example43 { public static void main(String[] args) { f(); } public static boolean fun(int a) { boolean flag = false; if (a == 3) { flag = true; return (flag); } …
一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少? public class Example13 { public static void main(String[] args) { number(); } public static void number() { for (int x = 1; x < 100000; x++) { if (Math.sqrt(x + 100) % 1 ==…
有五个学生,每个学生有3门课的成绩,从键盘输入以上数据(包括学生号,姓名,三门课成绩),计算出平均成绩,况原有的数据和计算出的平均分数存放在磁盘文件 "stud"中. public class Example50 { public static void main(String[] args) { stud(); } public static void stud() { Scanner ss = new Scanner(System.in); …
给一个不多于5位的正整数,要求:①求它是几位数:②逆序打印出各位数字. public class Example23 { public static void main(String[] args) { f(123789); } public static void f(long l) { String s = Long.toString(l); char[] c = s.toCharArray(); int j = c.len…
将几个字符串排序(按英文字母的顺序). public class Example40 { public static void main(String[] args) { String[] s={"math","english","java","java web","rose"}; stringSort(s); } public static void stringS…
一个数如果恰好等于它的因子之和,这个数就称为"完数".例如6=1+2+3.编程找出1000以内的所有完数. public class Example09 { public static void main(String[] args) { number(); } public static void number() { int count = 0; for (int i = 1; i <= 1000; i++) { …