标签:stringstream
已经放弃治疗了。。。。
1234 1234 125 117 0 0
8642 1232
病入膏肓的代码。。。。。
#include <iostream> #include <sstream> #include <string> #include <algorithm> #include <cstring> using namespace std ; int main() { string s1,s2 ; int a,b ; while(cin>>a>>b &&(a ||b)) { stringstream s ; s<<a ; s>>s1 ; s.clear() ; s<<b ; s>>s2 ; reverse(s1.begin() ,s1.end()) ; reverse(s2.begin(),s2.end()) ; s.clear() ; s<<s1 ; s>>a ; s.clear() ; s<<s2 ; s>>b ; cout<<a+b<<endl ; } return 0 ; }
重度STL依赖症晚期。。。(
原文地址:http://blog.csdn.net/u012566693/article/details/44983507