Char---Test

public class CharTest {

	public static void main(String[] args) {
		// TODO 自动生成的方法存根

		char a = 'a';
		char b = 97;
		char c = 'c';
		char d = '我';

		System.out.println(a);
		System.out.println(b);
		System.out.println(c);
		System.out.println(d);

	}

}

21.08.03

posted @ 2021-08-03 09:51  toumaoyu  阅读(43)  评论(0)    收藏  举报