有五个学生,每个学生有3门课的成绩,从键盘输入以上数据(包括学生号,姓名,三门课成绩),计算出平均成绩,况原有的数据和计算出的平均分数存放在磁盘文件 "stud"中. public class Example50 { public static void main(String[] args) { stud(); } public static void stud() { Scanner ss = new Scanner(System.in); …
将几个字符串排序(按英文字母的顺序). public class Example40 { public static void main(String[] args) { String[] s={"math","english","java","java web","rose"}; stringSort(s); } public static void stringS…
企业发放的奖金根据利润提成:利润(I)低于或等于10万元时,奖金可提10%:利润高于10万元,低于20万元时,低于10万元的部分按10%提成, 高于10万元的部分 ,可提成7.5%:20万到40万之间时,高于20万元的部分,可提成5%:40万到60万之间时,高于40万元的部分,可提成3%:60万到100万之间时 ,高于60万元的部分,可提成1.5%:高于100万元时,超过100万元的部分按1%提成. 从键盘输入当月利润I,求应发放奖金总数? public class Example12 { …
某个公司采用公用电话传递数据,数据是四位的整数,在传递过程中是加密的,加密规则如下: 每位数字都加上5,然后用和除以10的余数代替该数字, 再将第一位和第四位交换,第二位和第三位交换. public class Example48 { public static void main(String[] args) { f(2345); } public static void f(int num) { int[] c = new int[4]; …
求0~7所能组成的奇数个数.分析:组成1位数是4个,组成2位数是7*4个,组成3位数是7*8*4个,组成4位数是7*8*8*4个…… public class Example44 { public static void main(String[] args) { f(); } public static void f() { int sum = 4; int j; System.out.println("组成1位数是 &quo…
809*??=800*??+9*??+1,其中??代表的两位数,8*??的结果为两位数,9*??的结果为3位数.求??代表的两位数,以及809*??后的结果. public class Example42 { public static void main(String[] args) { f(); } public static void f() { int a = 809, b, i; for (i = 10; i < 13; i++)…
写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度. public class Example39 { public static void main(String[] args) { length("Hello World!"); } public static void length(String s) { int n = s.length(); System.out.println("输入的字符…
输入3个数a,b,c,按大小顺序输出. public class Example34 { public static void main(String[] args) { sort(5, 20, 15); } public static void sort(int a, int b, int c) { if (a < b) { int t = a; a = b; b = t; …
取一个整数a从右端开始的4-7位. public class Example32 { public static void main(String[] args) { cut(123456789); } public static void cut(long n) { String s = Long.toString(n); char[] c = s.toCharArray(); int j = c.length; …
输入三个整数x,y,z,请把这三个数由小到大输出. public class Example15 { public static void main(String[] args) { sort(15, 10, 5); } public static void sort(int x, int y, int z) { if (x > y) { int t = x; x = y; y = t; …
输入某年某月某日,判断这一天是这一年的第几天? public class Example14 { public static void main(String[] args) { year(2017, 1, 1); } public static void year(int year, int month, int day) { int d = 0; int days = 0; if (year < 0 || month <…
一球从100米高度自由落下,每次落地后反跳回原高度的一半:再落下……求它在第10次落地时,共经过多少米?第10次反弹多高? public class Example10 { public static void main(String[] args) { height(); } public static void height() { double sum = 0; double h = 100; for (int i = 0…
有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和. public class Example20 { public static void main(String[] args) { sum(20); } public static void sum(int n) { double x = 2.0; double y = 1.0; double t; double…
一个5位数,判断它是不是回文数.即12321是回文数,个位与万位相同,十位与千位相同. public class Example25 { public static void main(String[] args) { f2(123454321); }//方法一 public static void f1(int n) { if (n >= 10000 && n < 100000) { String s = S…
有5个人坐在一起,问第5个人多少岁,他说比第4个人大2岁.问第4个人岁数,他说比第3个人大2岁. 问第三个人,他说比第2人大两岁.问第2个人, 说比第一个人大两岁.最后问第一个人,他说是10岁. 请问第五个人多大? public class Example24{ public static void main(String[] args) { age(); } public static void age() { int age = 10; …
利用递归方法求5!. public class Example22 { public static void main(String[] args) { int n = 5; long s = sum(n); System.out.println(n + "!= " + s); } public static long sum(int n) { long s = 1; if (n == 1||n==0)…