展开全部
// 引包 import java.util.Scanner;
public static void main(String[] args) {
Scanner input = new Scanner(System.in); // 控制台输入类
System.out.print("请输入一个字符[ 如 a ]:"); // 提示输入
String word = input.next(); // 输入
if (word.length() == 1) { // 如果是一个字符
char[] character = word.toCharArray(); // 把字符串转换成 char[] 数组
int ascll = character[0]; // 获得 ascll 字符集 编码
System.out.println("字符 "+word+" 的ASCLL 码是:"+ascll); // 输出
} else {
System.out.print("请输入了一个字符!!");// 输出
}
}
有任何不明白可以Hi我,新春愉快!!!!
public static void main(String[] args) {
Scanner input = new Scanner(System.in); // 控制台输入类
System.out.print("请输入一个字符[ 如 a ]:"); // 提示输入
String word = input.next(); // 输入
if (word.length() == 1) { // 如果是一个字符
char[] character = word.toCharArray(); // 把字符串转换成 char[] 数组
int ascll = character[0]; // 获得 ascll 字符集 编码
System.out.println("字符 "+word+" 的ASCLL 码是:"+ascll); // 输出
} else {
System.out.print("请输入了一个字符!!");// 输出
}
}
有任何不明白可以Hi我,新春愉快!!!!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询