• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
Twelves
博客园    首页    新随笔    联系   管理    订阅  订阅
2021年9月27日
可变参数
摘要: 1.在方法声明中,在指定参数类型后加一个省略号(...) 2.一个方法中只能指定一个可变参数,它必须是方法的最后一个参数。任何普通的参数必须在它之前声明。 3.本质是数组。 public static void main(String[] args) { //调用可变参数的方法 printMax(3 阅读全文
posted @ 2021-09-27 20:05 Twelves 阅读(22) 评论(0) 推荐(0)
运用label标签:打印101-150之间所有的质数
摘要: public static void main(String[] args) { //打印101-150之间所有的质数 int count = 0; outer:for(int i=101;i<150;i++){ for(int j=2;j<i/2;j++){ if(i%j==0){ continu 阅读全文
posted @ 2021-09-27 19:15 Twelves 阅读(44) 评论(0) 推荐(0)
九九乘法表
摘要: public static void main(String[] args) { for (int j = 1; j <= 9; j++) { for (int i = 1; i <= j; i++) { System.out.print(j+"*"+i+"="+(j*i) + "\t"); } S 阅读全文
posted @ 2021-09-27 19:02 Twelves 阅读(20) 评论(0) 推荐(0)
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3