美文网首页
最后一段要学习的内容

最后一段要学习的内容

作者: 哈迪斯Java | 来源:发表于2023-07-20 10:55 被阅读0次

    public class StorageBox {
    public static void main(String[] args) {
    int[] totalNum = new int[20];
    int[] emptyNum = {2, 3, 5, 8, 12, 13, 16, 19, 20};
    System.out.println("超市中有储物箱" + totalNum.length + "个。");
    System.out.println("超市中尚未被使用的储物箱有" + emptyNum.length + "个。");
    System.out.println("超市中已经被使用的储物箱有" + (totalNum.length - emptyNum.length) + "个。");
    }
    }

    相关文章

      网友评论

          本文标题:最后一段要学习的内容

          本文链接:https://www.haomeiwen.com/subject/pgphddtx.html