摘要: 学习内容: 1、编写函数,使用函数重载,能求两个整数的最大数、三个整数的最大数、四个整数的最大数 import java.util.Scanner; public class Study { public static void max(int a[], int n) { int max = a[0 阅读全文
posted @ 2020-08-02 09:05 第厘 阅读(134) 评论(0) 推荐(0)