1.已知a,b均是整型变量,写出将a,b两个变量中的值互换的程序。(知识点:变量和 运算符综合应用)
package test; public class finish { public static void main(String[] args) { // TODO Auto-generated method stub int a=100; int b=200; int c; c=a; a=b; b=c; System.out.println("互换后的a是"+a); System.out.println("互换后的b是"+b); } }
2.给定一个0~1000的整数,求各位数的和,例如345的结果是3+4+5=12注:分解数字既可以先除后模也可以先模后除(知识点:变量和运算符综合应用)
package test; public class finish { public static void main(String[] args) { // TODO Auto-generated method stub int a =218; int b, c, d, e, sum; e = a / 1000; b = a / 100 % 10; c = a / 10 % 10; d = a % 10; sum = b +c +d +e; System.out.println("结果为" + sum); } }
3.华氏度50转成摄氏度是多少???(华氏温度和摄氏温度互相转换,从华氏度变成摄氏度你只要减去32,乘以5再除以9就行了,将摄氏度转成华氏度,直接乘以9,除以5,再加上32即行)
package test; public class finish { public static void main(String[] args) { // TODO Auto-generated method stub double n=50; double f; f=(n-32)*5/9; System.out.println("转成摄氏度的值是:"+f); } }
4.给定一个任意的大写字母A~Z,转换为小写字母。 (知识点:变量和运算符)
package test; public class finish { public static void main(String[] args) { // TODO Auto-generated method stub char n='C'; if(n>='B' && n<='K'){ n+=32; System.out.println(n); } } }