课堂测试 二

Posted 憧憧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了课堂测试 二相关的知识,希望对你有一定的参考价值。

1、源代码:

import java.util.Scanner;
 public class Main {
 
   public static void main(String[] args) {
        System.out.println("输入比较的数的个数");
        Scanner in = new Scanner(System.in);
          int length;
              length = in.nextInt();
                  while( length<=0)
                  {
                      System.out.println("输入错误  重新输入");
                      length = in.nextInt();
                      }
            Max max = new Max(length);
            max.Input();
            max.Largest(max.Array, max.length);
            max.Output();
   }    
 
 }

 class Max
 {
     int Array[];
     int length;
     int max;
     int i;
     public Max(int l)
    {
         length = l;
        }//构造方法
   int Largest(int list[],int length)
   {
       max = list[0];
     for( i=0;i<length;i++)
         {
           if(list[i]>max)
            {
                max = list[i];
           }
        }
       return max;
    }    
    void Input()
   {     
        Array = new int [length];
         Scanner in = new Scanner(System.in);

         for( i=0;i<length;i++)
              {            
             Array[i]=in.nextInt();
              }
    }
     void Output()
             {
             System.out.println(max);
             }

     }

 

2.运行截图:技术分享技术分享技术分享技术分享

 

以上是关于课堂测试 二的主要内容,如果未能解决你的问题,请参考以下文章

为什么二代测序的原始数据中会出现Read重复现象?

课堂测试总结-数组

二代身份证号码编码规则

染色体基因芯片分析和第二代测序应用的区别

2017-2018-1 20155330 《信息安全系统设计基础》课堂测试&课下作业

反射机制入门