摘要: A - Secret Numbers 预估难度:入门 题意 给定一个由小写英文字母和数字组成的字符串 \(S\)。请从 \(S\) 中提取出所有数字字符,并按原顺序输出。 代码 void solve() { string s; cin >> s; for(char c : s) if(isdigit 阅读全文
posted @ 2026-06-13 22:37 StelaYuri 阅读(95) 评论(0) 推荐(0)