参考代码:
import java.util.Scanner;
//用熟悉的printf输出字符常量 ' t ' 的ASCII以及ASCII码值63对应的字符!
//注意,是两个结果,一个数字,一个字符,用空格隔开!
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
char t='t';//定义了一个名为"t"的字符变量,并将它赋值为小写字母 t
int tAscii=(int)t;//使用强制类型转换将字符 't' 转换为对应的ASCII码值
char charfromAscii63=(char)63;//使用强制类型转换将整数63转换为对应的字符
System.out.println(tAscii+" "+charfromAscii63);
}
}
0.0分
0 人评分