摘要: 牛客周赛 Round 62 A-小红的字符移动 签到题 代码 #include <iostream> using namespace std; int main() { string s; cin >> s; swap(s[0], s[1]); cout << s; } B-小红的数轴移动 一道模拟题吧,按题意要求进行操作。 阅读全文
posted @ 2024-10-01 01:02 Natural_TLP 阅读(23) 评论(0) 推荐(1)