Chinaunix首页 | 论坛 | 博客
  • 博客访问: 99260
  • 博文数量: 102
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1011
  • 用 户 组: 普通用户
  • 注册时间: 2014-01-15 13:58
个人简介

普普通通一个人

文章分类

全部博文(102)

文章存档

2018年(1)

2015年(13)

2014年(88)

我的朋友

分类: C/C++

2014-01-23 09:39:06


点击(此处)折叠或打开

  1. #include <stdio.h>

  2. int main(){
  3.     int a, b;
  4.     while (scanf("%d %d", &a, &b) != EOF){    
  5.         printf("The sum of two number is: %d", a + b);
  6.     }

  7.     return 0;
  8. }

阅读(390) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~