[POJ 1000] A+B Problem 经典水题 C++解题

 
 
A+B Problem
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 311263   Accepted: 171333

Description

Calculate a+b

Input

Two integer a,b (0<=a,b<=10)

Output

Output a+b
 

Sample Input

1 2

Sample Output

3

计算两个整数的和

解决思路

 

这是经典水题了,每个OJ必有的。
题目很简单,就是对输入的两个整数a和b,输出它们的和。

用C++的基本语法就能搞定。


 1 /*
 2 poj 1000
 3 version:1.0
 4 author:Knight
 5 Email:[email protected]
 6 */
 7 
 8 #include<cstdio>
 9 using namespace std;
10  
11 int main()
12 {
13      int a,b;
14      scanf("%d%d", &a, &b);
15      printf("%d\n", a + b);
16      return 0;
17 }

 

 



 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。