题解 1204: 大小写转换

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

筛选

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

摘要:解题思路:        其实C++在之初更加推荐对自己的新特新使用迭代器的便利方式,所谓迭代器就是属于C++自身新模版的一种容器,旧时的容器使用iterator,新的容易定义方法用auto,据说C2……

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

摘要:解题思路: 一边输入一边输出,输出时注意将小写变为大写即可,英文字母小写变为大写只需要减32即可注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int m……

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

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

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

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

大小写转换 (Java代码)

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

大小写转换 (Java代码)

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

大小写转换 (Java代码)

摘要:解题思路:String 方法中有s.toUpperCase();方法,将小写字母转换成大写注意事项:无参考代码:import java.util.Scanner; public class Ma……

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

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

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

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