public class HelloWorld { public static void main(String[] args) { // 定义一个整型数组,并赋初值 int[] nums = new int[] { 61, 23, 4, 74, 13, 148, 20 }; int max = nums[0]; // 假定最大值为数组中的第一个元素 int min = nums[0]; // 假定最小值为数组中的第一个元素 dou

来源:6-6 编程练习

慕圣6549494

2020-10-03 21:21

想知道哪儿错了



写回答 关注

3回答

  • Chris丨
    2021-01-14 22:34:47
    public class HelloWorld {
        public static void main(String[] args) {
        int[] nums =new int[]{61,23,4,74,13,148,20};
        int max = nums[0];
        int min = nums[0];
         }
        }


  • 宝慕林4117178
    2020-10-18 16:32:14

    没错啊  除了少了两个大括号

  • 慕尼黑9579043
    2020-10-06 19:07:14

    同时定义同一个元素应该不行的


Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题