摘要: #include using namespace std; #define ll long long string turn(string s) { reverse(s.begin(),s.end()); return s; } string add(string a,string b) { string c = a; int m = 0; for(in... 阅读全文
posted @ 2019-03-05 20:45 Tonyyy 阅读(171) 评论(0) 推荐(0) 编辑