你的弟弟刚做完了“100以内数的加减法”这部分的作业,请你帮他检查一下。每道题目(包括弟弟的答案)的格式为a+b=c或者a-b=c,其中a和b是作业中给出的,均为不超过100的非负整数;c是弟弟算出的答案,可能是不超过200的非负整数,也可能是单个字符"?",表示他不会算。
1+2=3
3-1=5
6+7=?
99-0=99
2
简单题!
AC码:
#include<stdio.h> int main() { int count=0,i,a,b,c; char str[10],op; while(~scanf("%s",str)) { i=0; a=0; while(str[i]>=‘0‘&&str[i]<=‘9‘) { a=a*10+(str[i]-‘0‘); i++; } op=str[i]; i++; b=0; while(str[i]>=‘0‘&&str[i]<=‘9‘) { b=b*10+(str[i]-‘0‘); i++; } i++; if(str[i]>=‘0‘&&str[i]<=‘9‘) { c=0; while(str[i]>=‘0‘&&str[i]<=‘9‘) { c=c*10+(str[i]-‘0‘); i++; } } else c=-1; if(((op==‘+‘)&&(a+b==c))||((op==‘-‘)&&(a-b==c))) count++; } printf("%d\n",count); return 0; }
原文地址:http://blog.csdn.net/u012804490/article/details/25341063