题解 1204: 大小写转换

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

筛选

1204: 大小写转换

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

编写题解 1204: 大小写转换

摘要:解题思路:注意事项:参考代码:#include<iostream>#include <iomanip>#include<ctype.h>using namespace std;int main(){ ……

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……

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<ctype.h>int main(){ char a[80]; while(scanf("%s",a) != EOF)……

小写转大写超简单!

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){     char s[81];//保存输入的字符串     ……

大小写转换

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

c++范围for简单解法

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<sstream>#include<iomanip>using namespace std;int main(){ ……