摘要:
注意long long string存+反向迭代(其实没必要) 1 #include <iostream> 2 using namespace std; 3 typedef long long ll; 4 5 int main() 6 { 7 string s; 8 cin >> s; 9 ll a 阅读全文
posted @ 2020-03-24 17:12
域Anton
阅读(132)
评论(0)
推荐(0)
摘要:
1 #include <iostream> 2 #include <stack> 3 using namespace std; 4 5 stack<int> s; 6 char arr[16] {'0', '1', '2', '3', '4', '5', '6', '7', 7 '8', '9', 阅读全文
posted @ 2020-03-24 16:56
域Anton
阅读(125)
评论(0)
推荐(0)