import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); int m = input.nextInt(); int n = input.nextInt(); String str = input.next(); Calculate(m, n, str); } public static void Calculate(int m ,int n ,String str){ char[] array = str.toCharArray(); // 这一点知识会了,这道题就很简单了; switch(array[0]){ case '+': System.out.println(m+n); break; case '-': System.out.println(m-n); break; case '*': System.out.println(m*n); break; case '/': System.out.println(m/n); break; case '%': System.out.println(m%n); break; } } }
解题思路:
注意事项:
参考代码:
0.0分
0 人评分
IP判断 (C语言代码)浏览:1444 |
IP判断 (C语言代码)浏览:992 |
不容易系列2 (C语言代码)浏览:641 |
不会做的浏览:954 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:603 |
用筛法求之N内的素数。 (C语言代码)浏览:1385 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:793 |
程序员的表白 (C语言代码)浏览:706 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:537 |
字符逆序 (C语言代码)浏览:541 |