码迷,mamicode.com
首页 > 其他好文 > 详细

A+B Problem(swust oj 0020)

时间:2014-12-18 14:59:19      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   color   sp   strong   on   

Description:http://acm.swust.edu.cn/problem/0020/

AC源代码:

#include <stdio.h>
int main()
{
int a,b;
scanf("%d%d",&a,&b);
if (a>=0&&a<=10&&b>=0&&b<=10)
printf("%d\n",a+b);
return 0;
}

 

A+B Problem(swust oj 0020)

标签:des   style   blog   http   io   color   sp   strong   on   

原文地址:http://www.cnblogs.com/yanglingwell/p/4171683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!