解题思路:什么文件结束符结束还是没有懂。这个结束是借鉴的。我主要是将分解成字符串然后做的
注意事项:
参考
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
String str;
int yes=0;
while(input.hasNext()){
str=input.nextLine();
int n,m,t=1;
String str1="",str2="",str3="";
n=str.indexOf('+');
if(n==-1){
n=str.indexOf('-');
t=0;}
m=str.indexOf('=');
for(int i=0;i<n;i++)
str1+=str.charAt(i);
for(int i=n+1;i<m;i++)
str2+=str.charAt(i);
for(int i=m+1;i<str.length();i++)
str3+=str.charAt(i);
if(!str3.equals("?")){
if(t==1&&Integer.parseInt(str1)+Integer.parseInt(str2)==Integer.parseInt(str3))yes++;
if(t==0&&Integer.parseInt(str1)-Integer.parseInt(str2)==Integer.parseInt(str3))yes++;
}
}
System.out.println(yes);
}
}
0.0分
0 人评分
妹子杀手的故事 (C语言代码)浏览:1297 |
简单的a+b (C语言代码)浏览:878 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:651 |
核桃的数量 (C语言代码)浏览:726 |
1050题解(结构体数组与结构体指针的使用)浏览:1216 |
勾股数 (C语言代码)浏览:830 |
判定字符位置 (C语言代码)浏览:849 |
C二级辅导-等差数列 (C语言代码)浏览:891 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:712 |
矩阵转置 (C语言代码)浏览:855 |