A 考察点:格式化输入 签到题,直接输入输出即可。 时间复杂度: ACcode #include <iostream> #define endl '\n' using namespace std; int main(){ int a, b, c; scanf("%d-%d-%d", &a, &b, &c); cout << a << ' ' << b << ' ' << c << endl; return 0; } B 考察点:for循环暴力、字符串 循环暴力遍历所有的四个字符,如果能...