题解 1204: 大小写转换

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

筛选

大小写转换 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String args[]){ ……

大小写转换 (Java代码)

摘要:解题思路:注意事项:参考代码:public class 大小写转换 { public static void main(String[] args) { // TODO Auto-gen……

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

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

2025/8/18刷题记录

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

1204 大小写转换111111111

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

1204: 大小写转换

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

大小写转换 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<cmath> #include<algorithm> using nam……