上一页 1 ··· 6 7 8 9 10
  2021年8月18日
摘要: 循环语句 要求打印九九乘法表。 代码如下: package com.cxf.Switch; public class Demo1 { public static void main(String[] args) { for (int i = 1; i <= 9; i++) { for (int j 阅读全文
posted @ 2021-08-18 19:11 菜小疯 阅读(28) 评论(0) 推荐(0) 编辑
  2021年8月16日
摘要: Scanner续 一道基础题:输入多个数字,求数字的总和与平均数,通过非数字来结束输入,打印输出结果。 以下代码结合了Scanner和循环语句来解决它: package com.cxf.scanner; import java.util.Scanner; public class Demo5 { p 阅读全文
posted @ 2021-08-16 18:01 菜小疯 阅读(23) 评论(0) 推荐(0) 编辑
  2021年8月15日
摘要: Scanner类用以获取用户输入的信息,用户输入后,可使用next()和nextLine()进行接收。 使用next() package com.cxf.scanner; import java.util.Scanner; public class Demo2 { public static voi 阅读全文
posted @ 2021-08-15 21:44 菜小疯 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 以下代码区分a和a public class Helloworld { public static void main(String[] args) { int a = 1; int b = a++; int c = 1; int d = ++c; System.out.println(a); Sy 阅读全文
posted @ 2021-08-15 12:35 菜小疯 阅读(59) 评论(0) 推荐(0) 编辑
  2021年8月13日
摘要: Helloworld 以下代码输出Helloworld public class Hello{ public static void main(String[] args){ System.out.print("Hello,World!"); } } Hello为一个类 main属于Hello类的一 阅读全文
posted @ 2021-08-13 10:16 菜小疯 阅读(15) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10