1.已知a,b均是整型变量,写出将a,b两个变量中的值互换的程序。(知识点:变量和 运算符综合应用)
package com.a01;
public class hellowold {
public static void main(String[] args) {
int a=1,b=2,c;
c=a;
a=b;
b=c;
System.out.println("输出交换的a,b为"+a+"和"+b);
}
}
2.给定一个0~1000的整数,求各位数的和,例
如345的结果是3+4+5=12注:分解数字既可以先
除后模也可以先模后除(知识点:变量和运算符
综合应用)
package com.a01;
public class hellowold {
public static void main(String[] args) {
int bai,shi,ge,a=345,he;
bai=a/100;
shi=a/10%10;
ge=a%10;
he=bai+shi+ge;
System.out.println("随机取的一个数"+a+",百位,十位与个位相加之和为"+he);
}
}
3.华氏度50转成摄氏度是多少???(华氏温度和摄氏温度互相转换,从华氏度变成
摄氏度你只要减去32,乘以5再除以9就行了,将
摄氏度转成华氏度,直接乘以9,除以5,再加上
32即行)
package com.a01;
public class hellowold {
public static void main(String[] args) {
int huashi,sheshi,c=50;
sheshi=(c-32)*5/9;
huashi=sheshi*9/5-32;
System.out.println("华氏度转成摄氏度是"+sheshi+"摄氏度转为华氏度为"+huashi);
}
}
4.给定一个任意的大写字母A~Z,转换为小写字母。 (知识点:变量和运算符)
package com.a01;
public class hellowold {
public static void main(String[] args) {
char a='A',b=(char)(a+32);
System.out.println("取得一个随机字母"+a+",转化成它的小写字母为"+b);
}
}