Java程序,使用开关盒生成计算器
以下程序接受两个整数变量,将一个运算符作为运算符。根据所选的运算符,程序执行相应的操作并打印结果。
示例
import java.util.Scanner;
public class ab39_CalculatorUsingSwitch {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter value of 1st number ::");
int a = sc.nextInt();
System.out.println("Enter value of 2nd number ::");
int b = sc.nextInt();
System.out.println("Select operation");
System.out.println("Addition-a: Subtraction-s: Multiplication-m: Division-d: ");
char ch = sc.next().charAt(0);
switch(ch) {
case 'a' :
System.out.println("Sum of the given two numbers: "+(a+b));
break;
case 's' :
System.out.println("Difference between the two numbers: "+(a-b));
break;
case 'm' :
System.out.println("Product of the two numbers: "+(a*b));
case 'd' :
System.out.println("Result of the division: "+(a/b));
break;
default :
System.out.println("Invalid grade");
}
}
}输出结果
Enter value of 1st number :: 52 Enter value of 2nd number :: 85 Select operation Addition-a: Subtraction-s: Multiplication-m: Division-d: a Sum of the given two numbers: 137
热门推荐
3 祝福语简短七夕
10 哥哥祝福语简短霸气句子
11 员工对同事祝福语简短
12 新年祝福语简短句子
13 祝福语简短创意闺蜜
14 简短佛教新年祝福语大全
15 广东新居入伙简短祝福语
16 宝宝祝福语诗意简短 古文
17 同事们生日祝福语简短
18 新年探亲祝福语简短精辟