摘要: A - delete 题意: 输出删除字符串中 . 后的字符串 思路: 只输出字符串中不是 . 的字符 void solve() { string s = sread(); for(auto it:s) if(it!='.') cout<<it; cout<<endl; } B - 3^A 题意: 阅读全文
posted @ 2024-09-23 09:47 klr_i 阅读(52) 评论(0) 推荐(1)