本帖最后由 arthur 于 2013-4-4 22:40 编辑
- import java.io.*;
- public class T20006 {
- public static void main(String[] args) throws IOException
- {
- char ch;
- ch=(char)System.in.read();
- /*------------------*/
- ch=(char)(ch+32); //这里的ch+32是什么意思???
- System.out.println(ch);
- }
- }
- 这是段把输入的大写字母转成小写的代码,为什么转换的时候要ch+32,望同学指点
复制代码 |