摘要:
day4:Java运算符 package operator;public class Operator { public static void main(String[] args) { //ctrl+D 复制当强行到下一行 int a=100; int b=21; int c=110; int 阅读全文
摘要:
day3:java中的基本数据结构 public class Data_kind { public static void main(String[] args) { //整数型 int a=10; byte b=127; short c=100; long d=1258415455L; //浮点型 阅读全文