摘要: 例2.1 将字符赋给整型变量 public class Demo2_1 { public static void main(String[] args) { int i, j; i = 'A'; j = 'B'; System.out.println(i+ " " + j); }} 例2.2 字符数 阅读全文
posted @ 2020-08-21 20:35 Gazikel 阅读(102) 评论(0) 推荐(0) 编辑