hdu ACM Steps 1.2.8 Balloon Comes!
Posted invoid
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu ACM Steps 1.2.8 Balloon Comes!相关的知识,希望对你有一定的参考价值。
水题
#include<cstdio> char s[10]; int T,a,b,res; int main() { scanf("%d",&T); while(T--) { scanf("%s%d%d",s,&a,&b); switch (s[0]) { case ‘+‘ : printf("%d\n",a+b); break; case ‘-‘ : printf("%d\n",a-b); break; case ‘*‘ : printf("%d\n",a*b); break; case ‘/‘ : if(a%b) printf("%.2lf\n",(double)a/b); else printf("%d\n",a/b); break; } } return 0; }
以上是关于hdu ACM Steps 1.2.8 Balloon Comes!的主要内容,如果未能解决你的问题,请参考以下文章
hdu ACM Steps 1.2.3 A+B Coming
hdu ACM Steps 1.2.5 find your present