九宫格按键输入
标题:九宫格按键输入 | 时间限制:1秒 | 内存限制:262144K | 语言限制:不限
九宫格按键输入,有英文和数字两个模式,默认是数字模式,数字模式直接输出数字,英文模式连续按同一个按键会依次出现这个按键上的字母,如果输入“/”或者其他字符,则循环中断,输出此时停留的字母。
数字和字母的对应关系如下,注意0只对应空格:
import java.util.HashMap; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); HashMap<Character, String> map = new HashMap<>(16); map.put('1', ",."); map.put('2', "abc"); map.put('3', "def"); map.put('4', "ghi"); map.put('5', "jkl"); map.put('6', "mno"); map.put('7', "pqrs"); map.put('8', "tuv"); map.put('9', "wxyz"); map.put('0', " "); String[] splits = scanner.nextLine().split("#"); int toggleTime = splits.length; for (int i = 0; i < toggleTime; i++) { if (i % 2 == 0) { System.out.print(splits[i].replace("/", "")); } else { String string = splits[i]; // 去掉开头的 / for (int j = 0; j < string.length(); j++) { if (string.charAt(j) != '/') { string = string.substring(j); break; } } if (string.length() > 0) { char[] cs = string.toCharArray(); char cur = cs[0]; int count = 1; for (int j = 1; j < cs.length; j++) { if (cs[j] != cur) { String s = map.get(cur); System.out.print(s.charAt((count - 1) % s.length())); while (cs[j] == '/' && j + 1 < cs.length) { j++; } if (cs[j] == '/') { break; } else { cur = cs[j]; count = 1; } } else { count++; } } String s = map.get(cur); System.out.print(s.charAt((count - 1) % s.length())); } } } } }