解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); String str=sc.next(); char ch[]=str.toCharArray(); for (int i = 0; i < ch.length; i++) { if ((int)ch[i]>=65&&(int)ch[i]<=90) { ch[i]=(char)((int)ch[i]+32); System.out.print(ch[i]); } else if ((int)ch[i]>=97&&(int)ch[i]<=122) { ch[i]=(char)((int)ch[i]-32); System.out.print(ch[i]); } } } }
0.0分
1 人评分
C语言考试练习题_排列 (C++代码)浏览:1112 |
2005年春浙江省计算机等级考试二级C 编程题(3),复杂度最低的方法没有之一!!!!!浏览:856 |
P1002 (C语言代码)浏览:1019 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
Pascal三角 (C语言代码)格式错误浏览:551 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:633 |
【排队买票】 (C语言代码)浏览:944 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:934 |
【蟠桃记】 (C语言代码)浏览:1084 |
核桃的数量 (C语言代码)浏览:726 |