首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
2026nbsp专题
HDOJnbsp;nbsp;2026nbsp;nbsp;nbsp;首字母变大写
题目:http://acm.hdu.edu.cn/showproblem.php?pid=2026 #include <string.h> #include <stdio.h> int main() { char a[1005]; while(gets(a)) { if(a[0]>'Z') printf("%c",a[0]-32);
阅读更多...