随笔分类 -  Java基础

摘要:public class Demo1 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("请输入内容:"); //判断用户有没有输入字符串 i 阅读全文
posted @ 2020-04-27 12:30 Jaxopp 阅读(126) 评论(0) 推荐(0)
摘要:九九乘法表 public class Nn { public static void main(String[] args) { for (int j = 1; j <= 9; j++) { for (int i = 1; i <=j; i++) { System.out.print(i+"*"+j 阅读全文
posted @ 2020-04-27 12:26 Jaxopp 阅读(238) 评论(0) 推荐(0)
摘要:/** * @author Jaxopp * @date 2020/4/25 - 23:03 */public class Demo3 { public static void main(String[] args) { //整数扩展: 进制 二进制0b 十进制 八进制0 十六进制0x int i= 阅读全文
posted @ 2020-04-25 23:21 Jaxopp 阅读(116) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。
posted @ 2020-04-25 15:37 Jaxopp 阅读(0) 评论(0) 推荐(0)