Java中的數組

來源:互聯網
上載者:User

標籤:public   java   

二維數組計算最低值與最高值

public classConutMark {

    public static void main(String[] args) {

         //定義二維數組

int grades[][] = { {77, 68, 86, 73 }, { 96, 87, 89, 81 }, { 70, 90, 86, 81 } };

int lowGrade =grades[0][0];        //定義儲存最低分數的變數

for (int i = 0; i<grades.length; i++) {  //迴圈遍曆數組

             for (int column = 0; column <grades[i].length; column++) {

                if (grades[i][column]<lowGrade)

                  //取數組中最小值賦予lowGrade變數

lowGrade =grades[i][column];        

             }

         }

inthighGrade =grades[0][0];      //定義儲存最高分數的變數

for (int j = 0; j<grades.length; j++) {

for (int column =0; column < grades[j].length; column++) {

if(grades[j][column] >highGrade)

                     //取數組中最大值賦予highGrade變數

highGrade =grades[j][column]; 

             }

         }


System.out.println("最低的分數為:" +lowGrade);   //列印數組中最小值

System.out.println("最高的分數為:" +highGrade);   //列印數組中最大值

    }

}

判斷某資料是否在指定數組中

public class TestDemo {

         public static voidmain(String args[]) {

                   int data [] = newint [] {209,201,2,2,3,6,7} ;

                   int searchData = 3;       // 要尋找的內容

                   if(isExists(data,searchData)) {       // 為true

                            System.out.println("已經尋找到了內容。") ;

                   } else {

                            System.out.println("沒有找到內容。") ;

                   }

         }

         public staticbooleanisExists(int temp [],int search) {          //存在

                   for (int x = 0 ; x<temp.length ; x ++) {

                            if(temp[x] == search) {

                                     returntrue ;          // 尋找到了,後面的迴圈不做了

                            }

                   }

                   return false ;        // 沒有尋找到

         }

}



Java中的數組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.