码迷,mamicode.com
首页 > 其他好文 > 详细

课堂测试

时间:2016-03-21 13:53:06      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

一.程序代码:

package test1;
import java.util.Scanner;
public class Max {
    public static void main(String[] args){
        Max m=new Max();
        int length;
        Scanner in=new Scanner(System.in);
        System.out.println("The NUM");
    
        length=in.nextInt();

        int list[]=new int[length];
        
        for(int i=0;i<length;i++){
            list[i]=in.nextInt();
        }
        System.out.println(m.Largest(list,length));
        in.close();
            
    }
    
    public int Largest(int list[],int length){
        if(length<=0){
            return 0;
        }
        int i,max=list[0];
        for(i=0;i<length;i++){
            if(list[i]>max){
                max=list[i];
            }
        }
        return max;
        
    }
}

二.结果分析截图:

1.正序的正整数

技术分享

2.倒序的正整数

技术分享

3.乱序的正整数

技术分享

4.乱序的负整数

技术分享

5.乱序的整数

技术分享

6.存在相等的整数

技术分享

7.数组为空

技术分享

课堂测试

标签:

原文地址:http://www.cnblogs.com/java-meng/p/5301518.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!