参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int x = scanner.nextInt(); int y = scanner.nextInt(); char op = scanner.next().charAt(0); int res = 0; switch(op) { case '+': res = x + y; break; case '-': res = x - y; break; case '*': res = x * y; break; case '/': res = x / y; break; case '%': res = x % y; break; } System.out.println(res); } }
0.0分
5 人评分
母牛的故事 (C语言代码)浏览:478 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:806 |
C语言训练-求1+2!+3!+...+N!的和 (C语言代码)万恶的long long浏览:907 |
简单的a+b (C语言代码)浏览:674 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:609 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:574 |
母牛的故事 (C语言代码)浏览:1045 |
字符逆序 (C语言代码)浏览:506 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:569 |
蚂蚁感冒 (C语言代码)浏览:816 |