题解 1204: 大小写转换

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

最简单易懂的解法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>int main(){    char a[80];    ……

大小写转换

摘要:解题思路:模拟注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;……

1204 大小写转换111111111

摘要:解题思路: 小转大upper()注意事项:参考代码:a=input()b=input()c=input()a1=a.upper()b1=b.upper()c1=c.upper()print(a1)pr……