小练习
public class TestifZuoYe {
public static void main(String[] args) {
System.out.println("课后作业:生成一个在0-100数值,表示年龄的随机数");
int r=(int) (Math.random()*100);
System.out.println("随机数为"+r);
if (r<15){
System.out.println("儿童");
}else if (r<25){
System.out.println("青年");
}else if (r<45){
System.out.println("中年");
}else if (r<65){
System.out.println("中老年");
}else if (r<85){
System.out.println("老年");
}else{
System.out.println("寿星");
}
}}
运行结果
课后作业:生成一个在0-100数值,表示年龄的随机数
随机数为36
中年
小练习2
public class TestiifZuoYe1 {
public static void main(String[] args) {
//随机输出a-z的字母,如果遇到a,e,i,o,则输出元音 否则输出辅音
int r =(int) (Math.random()*26);
char t='a';
//因r是int需要强制转型为char
t=(char) (t+r);
if (t=='a'||t=='e'||t=='i'||t=='O'){
System.out.println("元音"+t);
}else {
System.out.println("辅音"+t);
}
}}
运行结果
辅音v
小练习3
public class TestiifZuoYe2 {
public static void main(String[] args) {
System.out.println("小练习2:随机成0-100的分数,60分以下不及格,60-69分为一般,70-79分为良好,80-89分为优秀,90分为天才");
int r=(int) (Math.random()*100);
System.out.println("你这次考试的分数为"+r);
if(r<60){
System.out.println("你的分数为:"+r+"不及格,你个废物");
}else if (r<69){
System.out.println("你的分数为"+r+"一般,有进步");
}else if(r<79){
System.out.println("你的分数为"+r+"良好,还阔以");
}else if(r<89){
System.out.println("你的分数为"+r+"优秀,差不多了");
}else {
System.out.println("你的分数为"+r+"天才,你他娘的是个天才");
}
}}
运行结果
小练习2:随机成0-100的分数,60分以下不及格,60-69分为一般,70-79分为良好,80-89分为优秀,90分为天才
你这次考试的分数为59
你的分数为:59不及格,你个废物