摘要: A - Count . 预估难度:入门 标签:模拟 题意 给定一个由小写英文字母组成的字符串 \(S\),问 \(S\) 中有多少个字符为 i 或者 j? 代码 void solve() { string s; cin >> s; int cnt = 0; for(char c : s) if(c 阅读全文
posted @ 2026-01-24 22:26 StelaYuri 阅读(57) 评论(0) 推荐(0)