Java"编写一个程序,根据用户输入的一个字符,判断字符是不是字母,如果是字母,判断该字母是声母换

日期:2014-11-28 21:37:13 人气:2

Java"编写一个程序,根据用户输入的一个字符,判断字符是不是字母,如果是字母,判断该字母是声母换

public class SwitchTest { public static void main(String[] args) { Scanner input = new Scanner(System.in); while (true) { System.out.println("请输入一个字符"); String line = input.next(); if (line.length() > 1){ continue; } char c = l
    A+
热门评论