本帖最后由 liqiong0327 于 2012-10-22 19:15 编辑
- import java.util.*;
- public class Permutation {
- public static void main(String[] args) {
- Scanner console = new Scanner(System.in);
- System.out.print("Enter a string:");
- String a = console.next();
- char b = a.charAt(0);
- char c = a.charAt(1);
- char d = a.charAt(2);
- System.out.println(b+c+d);
- }
- }
复制代码 为什么我运行后,输入的字母会变成数字出来。这是什么原因呢? |