解题思路:
注意事项:
参考代码:
#include <iostream>
#include <deque>
#include <algorithm>
#include <numeric>
#include <iterator>
#include <string>
#include <cmath>
#include <cstdlib>
#include <string.h>
using namespace std;
int f(int n)
{
int count=0;
while(n)
{
n/=10;
count++;
}
if(count>2)
{
return 1;
}
else
{
return 0;
}
}
int main()
{
deque<int> q[1001];
int n;
cin>>n;
int a,b;
for(int i=0;i<n;i++)
{
cin>>a>>b;
if(f(a+b)==1)
{
q[i].push_back((a+b)%10);
q[i].push_back((a+b)/10%10);
}
else
{
q[i].push_back(a+b);
}
}
for(int i=0;i<n;i++)
{
copy(q[i].rbegin(),q[i].rend(),ostream_iterator<int>(cout,""));
cout<<endl;
}
return 0;
}
0.0分
0 人评分
WU-复数求和 (C++代码)浏览:2119 |
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)浏览:366 |
Hello, world! (C++代码)浏览:1778 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:331 |
输入输出格式练习 (C语言代码)浏览:773 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:712 |
简单的a+b (C语言代码)浏览:531 |
简单的a+b (C语言代码)浏览:617 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:518 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:607 |