大家好,我是考100的代码小小顾,祝大家学习进步,加薪顺利呀。今天说一说定义一个测试类测试代码_html基础代码,希望您对编程的造诣更进一步.
package com.test171.day02;
import java.util.Scanner;
// 功能:switch练习,成绩等级判断
public class T6_SwitchTest {
public static void main(String[] args) {
// 从键盘上输入成绩
System.out.println(“请输入您的成绩”);
Scanner sn = new Scanner(System.in);
int a = sn.nextInt();
// 成绩在0-100之间
if (a >= 0 && a <= 100) {
switch (a / 10) {
case 10:
case 9:
System.out.println(“A”);
break;
case 8:
System.out.println(“B”);
break;
case 7:
System.out.println(“C”);
break;
case 6:
System.out.println(“D”);
break;
default:
System.out.println(“E”);
}
} else {
System.out.println(“您输入的成绩有误”);
}
}
}
if-else判断
package com.test171.day02;
import java.util.Scanner;
public class T5_IfElseTest4 {
public static void main(String[] args) {
Scanner sn = new Scanner(System.in);
System.out.println(“请输入一个数值”);
int a = sn.nextInt();
if (a == 1) {
System.out.println(“A”);
} else if (a == 2) {
System.out.println(“B”);
} else if (a == 3) {
System.out.println(“C”);
} else {
System.out.println(“Z”);
}
}
}
Switch case判断
package com.test171.day02;
public class SwitchTest {
public static void main(String[] args) {
int a = 4;
switch (a) {
case 1:// 符号是冒号
System.out.println(“A”);
break;
case 2:// 符号是冒号
System.out.println(“B”);
break;
default:
System.out.println(“Z”);
}
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/4072.html