1,输入字符
char flag = sc.next().charAt(0);
2,判断输入是数字还是字符串
if(!sc.hasNextInt()){
//此时为字符串
}
3,java类型级别
由低到高:byte,short,char-->int-->long-->float-->double
2021-08-09 02:09:42
char flag = sc.next().charAt(0);
if(!sc.hasNextInt()){
//此时为字符串
}
由低到高:byte,short,char-->int-->long-->float-->double