参考答案:
#include<iostream> #include<string> using namespace std; int main() { string s; // 每次接收一个单词 while (cin >> s) { // 如果首字符是小写 if (s[0] >= 'a') { // 转大写 s[0] = s[0] - 'a' + 'A'; } // 输出 cout << s[0]; } return 0; }
注册一个 xfxcy 通用账户,您就可以在我们提供的所有在线评测服务上提交代码、参与讨论。
使用您的 xfxcy 通用账户