题解 1204: 大小写转换

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

筛选

1204: 大小写转换

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

大小写转换 (C语言代码)

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

1204: 大小写转换

摘要:核心:    name = &#39;Hello World&#39;    print(name.lower())  # 大写转小写    print(name.upper())  # 小写转大写 ……

最简单易懂的解法

摘要:解题思路:注意事项:参考代码:#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……

2025/8/18刷题记录

摘要:解题思路:End of file意思是输入不为null注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){&nb……

大小写转换

摘要:解题思路:18:45:48注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100];int i,n;while(scan……