王 彥 says to YSITD#include <stdio.h> int main(){ char N; int A,B; scanf("%d%c%d",&A,&N,&B); switch(N) { case "+" : printf("%d",A+B); break; case "-" : printf("%d",A-B); break; case "*" : printf("%d",A*B); break; default : break; }; return 0; };at Sat, Sep 16, 2017 12:12 AM