解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class 弟弟的作业 {
public static void main(String args[]){
Scanner sc=new Scanner(System.in);
int n=0;
while(sc.hasNext()){
String s=sc.next();
int a=s.indexOf("+");
int b=s.indexOf("-");
int e=s.indexOf("=");
int q=s.indexOf("?");
if(q==-1){
if(a!=-1){
int x=Integer.parseInt(s.substring(0,a));
int y=Integer.parseInt(s.substring(a+1,e));
int z=Integer.parseInt(s.substring(e+1));
if(x+y==z)
n++;
}
if(b!=-1){
int x=Integer.parseInt(s.substring(0,b));
int y=Integer.parseInt(s.substring(b+1,e));
int z=Integer.parseInt(s.substring(e+1));
if(x-y==z)
n++;
}
}
}
System.out.print(n);
}
}
0.0分
0 人评分
哥德巴赫曾猜测 (C语言代码)浏览:1148 |
【排队买票】 (C语言代码)浏览:944 |
wu-淘淘的名单 (C++代码)浏览:1532 |
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:637 |
C二级辅导-分段函数 (C语言代码)浏览:659 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:490 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:455 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:2173 |
Manchester-字符逆序(稳,附带小问题)浏览:5076 |
1196题解浏览:552 |