注意事项:
参考代码:
#include <deque>
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <iterator>
#include <iomanip>
#include <numeric>
#include <sstream>
#include <string>
#include <cmath>
#include <string.h>
#define V 1001
using namespace std;
unsigned int f[101][V];//全局变量,自动初始化为0
unsigned int weight[101];
unsigned int value[101];
#define max(x,y) (x)>(y)?(x):(y)
int main()
{
string s1,s2,s3;
cin>>s1>>s2;
reverse(s1.begin(),s1.end());
reverse(s2.begin(),s2.end());
int x,y,z,n;
stringstream ss1;
ss1<<s1;
ss1>>x;
stringstream ss2;
ss2<<s2;
ss2>>y;
z=x+y;
stringstream ss3;
ss3<<z;
ss3>>s3;
reverse(s3.begin(),s3.end());
stringstream ss4;
ss4<<s3;
ss4>>n;
cout<<n<<endl;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:504 |
C二级辅导-等差数列 (C语言代码)浏览:831 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:548 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:456 |
C语言程序设计教程(第三版)课后习题9.4 (C语言代码)浏览:507 |
字符串对比 (C++代码)浏览:597 |
P1044 (C++代码)浏览:550 |
简单的a+b (C语言代码)浏览:263 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:648 |
危险系数 (C++代码)浏览:1261 |