摘要: 9.基本运算符 % 取余,模运算 int a = 10; int b = 21; System.out.println(b%a); ++ 自增 int a = 3; int b = a++; System.out.println(a); //a 在前 ++ 在后 先赋值在运算 int c = ++a 阅读全文
posted @ 2020-07-30 23:19 DJ赵 阅读(80) 评论(0) 推荐(0)