#include<stdio.h> int main() { int a,b,c,k,count=0; char op; //操作符 while (~(k=scanf("%d%c%d=%d",&a,&op,&b,&c))) { if(k==4) //scanf函数的返回值为变量正确接收的个数 { if(op=='+'&&a+b==c||op=='-'&&a-b==c) count++; } else getchar(); //当个数不的时候,用getchar接收回车 } printf("%d\n",count); }
0.0分
0 人评分