解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class qisan {
public static void main(String[] args) {
int count = 0;
Scanner scanner = new Scanner(System.in);
while (scanner.hasNext()) {
String str = scanner.next();
int opIndex = str.indexOf("+");// 返回出现操作符+ -的字符串位置-1表示没有找到
if (opIndex == -1) {
opIndex = str.indexOf("-");
}
int eqPos = str.indexOf("=");
String aStr = str.substring(0, opIndex);// 取a的字符串
String bStr = str.substring(opIndex + 1, eqPos);// 取b的字符串
String resultStr = str.substring(eqPos + 1);// 结果的字符串
int a = Integer.parseInt(aStr);
int b = Integer.parseInt(bStr);
int c;
if (!resultStr.endsWith("?")) {
c = Integer.parseInt(resultStr);
} else {
c = -32768;
}
char op = str.charAt(opIndex);
if (op == '+' && c == a + b) {
count++;
} else if (op == '-' && c == a - b) {
count++;
}
}
System.out.println(count);
}
}
( 参考了下,湖南省第六届 中信软件教育杯 大学生程序设计大赛试题 第二题 )
0.0分
0 人评分
川哥的吩咐 (C语言代码)浏览:926 |
十->二进制转换 (C语言代码)浏览:1330 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1207 |
C语言训练-斐波纳契数列 (C语言代码)浏览:644 |
C二级辅导-阶乘数列 (C语言代码)浏览:671 |
用getchar()函数接收字符,正序输入为什么会倒序输出浏览:767 |
P1044 (C++代码)浏览:550 |
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言描述if-else if语句)浏览:1090 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:444 |
蛇行矩阵 (C语言代码)浏览:707 |