摘要:
public class three{ public static void main(String[] args){ byte a=1; //最小 short b=20; int c=30; //int为常用 long d=50l; //long结尾加l float num1=1.66f; //f 阅读全文
2021年6月18日 #
2021年6月17日 #
摘要:
public class Hello{ public static void main (String[] args){ System.out.print("Hello,World!"); } } HHH~ 阅读全文