如何在开关盒中使用字符作为外壳?
2022-09-04 06:34:18
如何在开关盒中使用字符?我将获得用户输入的任何内容的第一个字母。
import javax.swing.*;
public class SwitchCase {
public static void main (String[] args) {
String hello = "";
hello = JOptionPane.showInputDialog("Input a letter: ");
char hi = hello;
switch(hi) {
case 'a': System.out.println("a");
}
}
}