JAVA基础入门—if switch练习
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
break;
default: days=31; //其它月份为31天
}
System.out.println(month+"月份为【"+days+"】天");
}
}
if(c>max) max=c;
System.out.println("Max="+max);
min=a<b ? a : b;
min=c<min ? c : min;
System.out.println("Min="+min);
}
}
2、给出一个分数,按不同的分数段将其评定为A、B、C、D和E五个档次之一。
//应用
public class App4_2
{
public static void main(String[] args)
{
int testScore=86;
char grade;
if(testScore>=90){
grade='A';
} else if (testScore>=80) {
1、找出三个整数中的最大值和最小值。
//filename:App4_1.java if语句的应用
public class App4_1
{
public static void main(String[] args)
{
int a=1,b=2,c=3,max,min;
if(a>b)
max=a;
else
max=b;
System.out.print("请输入月份:");
month=reader.nextInt();
switch (month)
{
case 2: days=28; //2月份是28天
break;
case 4:
case 6:
case 9:
case 11:days=30; //4、6、9、11月份的天数为30
grade='B';
} else if (testScore>=70) {
grade='C';
} else if (testScore>=60) {
grade='D';
} else {
grade='E';
}
System.out.println("评定成绩为:"+ grade);
}
}
4、从键盘上输入一个月份,然后判断该月份的天数。
//filename:App4_4.java switch语句的应用
import java.util.*;
public class App4_4
{
public static void main (String[] args)
{
int month,days;
Scanner reader =new Scanner(System.in);
default: days=31; //其它月份为31天
}
System.out.println(month+"月份为【"+days+"】天");
}
}
if(c>max) max=c;
System.out.println("Max="+max);
min=a<b ? a : b;
min=c<min ? c : min;
System.out.println("Min="+min);
}
}
2、给出一个分数,按不同的分数段将其评定为A、B、C、D和E五个档次之一。
//应用
public class App4_2
{
public static void main(String[] args)
{
int testScore=86;
char grade;
if(testScore>=90){
grade='A';
} else if (testScore>=80) {
1、找出三个整数中的最大值和最小值。
//filename:App4_1.java if语句的应用
public class App4_1
{
public static void main(String[] args)
{
int a=1,b=2,c=3,max,min;
if(a>b)
max=a;
else
max=b;
System.out.print("请输入月份:");
month=reader.nextInt();
switch (month)
{
case 2: days=28; //2月份是28天
break;
case 4:
case 6:
case 9:
case 11:days=30; //4、6、9、11月份的天数为30
grade='B';
} else if (testScore>=70) {
grade='C';
} else if (testScore>=60) {
grade='D';
} else {
grade='E';
}
System.out.println("评定成绩为:"+ grade);
}
}
4、从键盘上输入一个月份,然后判断该月份的天数。
//filename:App4_4.java switch语句的应用
import java.util.*;
public class App4_4
{
public static void main (String[] args)
{
int month,days;
Scanner reader =new Scanner(System.in);