Your task is to Calculate a + b.
标签:des style blog io ar color os sp for
Your task is to Calculate a + b.
Input contains an integer N in the first line, and then N lines follow. Each line consists of a pair of integers a and b, separated by a space, one pair of integers per line.
For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.
2 1 5 10 20
6 30
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 int main() 5 { 6 int n,a,b; 7 int sum; 8 string result; 9 char s[100]; 10 cin>>n; 11 for(int i=0;i<n;i++) 12 { 13 cin>>a; 14 cin>>b; 15 sum = a+b; 16 sprintf(s, "%d",sum);//将整数转为字符串型 17 result += s; 18 result += "\n"; 19 } 20 cout<<result; 21 return 1; 22 }
武汉科技大学ACM :1002: A+B for Input-Output Practice (II)
标签:des style blog io ar color os sp for
原文地址:http://www.cnblogs.com/liuwt365/p/4147446.html