經典例子徹解數組

来源:http://www.cnblogs.com/weiguangyi/archive/2016/01/31/5173889.html
-Advertisement-
Play Games

例1:求學生的平均分 1 public static void main(String[] args) { 2 Scanner input=new Scanner(System.in); 4 int scores []=new int[5]; 5 int sum=0; 6 7 System.out.


例1:求學生的平均分

 1 public static void main(String[] args) {        
 2 Scanner input=new Scanner(System.in);
 4         int scores []=new int[5];
 5         int sum=0;
 6         
 7         System.out.println("請輸入五位同學的成績:");
 8         for (int i = 0; i < scores.length; i++) {//遍曆數組
 9             scores[i]=input.nextInt();
10             sum+=scores[i];//成績累加        
11         }
12         System.out.print("平均分:"+sum/scores.length);

例2:輸出5筆購物金額及總金額

 1 public static void main(String[] args) {                
 2         Scanner input=new Scanner(System.in);
 3         double sum=0;
 4         double scores[]=new double[5];
 5         for (int i = 0; i < scores.length; i++) {
 6             System.out.print("請輸入第"+(i+1)+"筆金額的記錄:");
 7             scores[i]=input.nextDouble();
 8              sum+=scores[i];
 9         }
10         System.out.println("序號\t\t"+"金額(元)");
11         for (int i = 0; i < scores.length; i++) {
12             System.out.print((i+1)+"\t\t");
13         System.out.println(scores[i]);
14         }
15             System.out.println("總金額:\t\t"+sum);

例3:迴圈錄入5位學員成績,進行升序排列後輸出結果

 1 public static void main(String[] args) {        
 2     Scanner input=new Scanner(System.in);
 3     int scores []=new int[5];
 4     System.out.println("請輸入5位同學的成績:");
 5     //錄入成績
 6     for (int i = 0; i < scores.length; i++) {
 7         scores[i]=input.nextInt();
 8     }
 9     Arrays.sort(scores);//排序
10     System.out.println("學員成績按升序排序:");
11     for (int i = 0; i < scores.length; i++) {
12         System.out.println(scores [i]+" ");
13     }

例4:從鍵盤輸入本次Java考試五位學生的成績,求考試成績最高分

 1 public static void main(String[] args) {        
 2     Scanner input=new Scanner(System.in);
 3     int scores []=new int[5];
 4     int max=0;
 5     System.out.println("請輸入5位同學的成績:");
 6     //錄入成績
 7     for (int i = 0; i < scores.length; i++) {
 8         scores[i]=input.nextInt();
 9     }
10     
11     for (int i = 0; i < scores.length; i++) {
12         if (scores[i]>max) {
13             max=scores[i];
14         }
15     }
16         System.out.println("最高分:"+max);
17     }

例5:有一組學員的成績{99,85,82,63, 60},將它們按升序排列。要增加一個學員的成績,將它插入成績序列,並保持升序。

 1 public static void main(String[] args) {        
 2     Scanner input=new Scanner(System.in);
 3            int [] list=new int [6];
 4            list[0]=99;
 5            list[1]=95;
 6            list[2]=92;
 7            list[3]=89;
 8            list[4]=69;
 9            list[5]=49;
10            int index=list.length;//保存新增成績的位置
11            System.out.println("請輸入新增成績:");
12            int num=input.nextInt();//輸入要插入的數據
13            //找到新元素插入的位置
14            for (int i = 0; i < list.length; i++) {
15             
16                if (num>list[i]) {
17                 index=i;
18                 break;
19             }
20         }
21            //元素後移
22            for (int i =list.length-1 ; i >index ; i--) {
23         list[i]=list[i-1];//index下標開始的元素後移一個位置
24         }
25            list[index]=num;
26     System.out.println("插入成績的下標:"+index);
27     
28     System.out.println("插入後成績信息是:");
29     for (int i = 0; i < list.length; i++) {
30         System.out.println(list[i]+"\t");
31     }
32     }

例6:將 一組亂序的字元進行排序 進行升序和逆序輸出

 1 public static void main(String[] args) {        
 2     Scanner input=new Scanner(System.in);
 3     String[]num=new String[]{"a","c","u","b","e","p","f","z"};
 4     System.out.print("原字元序列:");
 5     for (int i = 0; i < num.length; i++) {
 6         System.out.print(num[i]+" ");
 7     }
 8     Arrays.sort(num);
 9     System.out.println();//換行
10     System.out.print("升序排序後:");
11     for (int i = 0; i < num.length; i++) {
12         System.out.print(num[i]+" ");
13     }
14     System.out.println();//換行
15     System.out.print("逆序輸出為:");
16     //逆序,則從最後的哪一個元素排在第一位
17     for (int i = num.length-1; i >=0 ; i--) {
18         System.out.print(num[i]+" ");
19     }

例7:求出4家店的最低手機價格及原始位置(下標)

 1 Scanner input=new Scanner(System.in);
 2      System.out.println("請輸入4家店的價格");
 3        int[]num=new int[4];
 4        for (int i = 0; i < num.length; i++) {
 5                System.out.print("第"+(i+1)+"店的價格:");
 6                num[i]=input.nextInt();           
 7            }
 8        int min=num[0];
 9         int index=0;
10            for (int j = 0; j < num.length; j++) {
11             if (num[j]<min) {
12                 min=num[j];
13                 index=j;
14             }
15             
16            }
17            System.out.print("最低價格:"+min);
18            System.out.println("且它在數組中的原始位置(下標)是:" + index);
19         }
20     }

例8:從鍵盤上輸出10個整數,合法值為1,2或3,其餘為不合法,並且統計合法及不合法的個數

 1 Scanner input=new Scanner(System.in);
 2         int nums[] = new int[10];
 3         int a = 0;
 4         int b = 0;
 5         int c = 0;
 6         int d = 0;
 7         System.out.println("請輸入10個數:");
 8         for (int i = 0; i < nums.length; i++) {
 9             nums[i] = input.nextInt();
10         
11             switch (nums[i]) {
12             case 1:
13                 a++;
14                 break;
15             case 2:
16                 b++;
17                 break;
18             case 3:
19                 c++;
20                 break;
21             default:
22                 d++;
23                 break;
24             }
25             
26         }
27         System.out.println("數字1的個數:"+a);
28         System.out.println("數字2的個數:"+b);
29         System.out.println("數字3的個數:"+c);
30         System.out.println("非法數字的個數:"+d);

例9:假設有一個數組,長度為5,int [] aray=new int[]{1,3,-1,5,-2},先創建一個新數組,要求新數組的存放順序與原數組的元素逆序,並且如果原數組中的元素值小於0,在新數組中安0存儲,

 1 Scanner input=new Scanner(System.in);
 2             
 3     int []array=new int[]{1,3,-1,5,-2};
 4     System.out.println("原數組的為:");
 5     for (int i = 0; i < array.length; i++) {
 6         System.out.print(array[i]+ " ");
 7     }
 8     System.out.println();
 9       int newarray[]=new int[5];
10       for (int i = array.length - 1; i >= 0; i--) {
11             if (array[i] < 0) {
12                 continue;
13             }
14             if (array[i] > 0) {
15                 newarray[array.length - i - 1] = array[i];
16             }
17         }
18         System.out.println("");
19         System.out.println("逆序並處理後的數組為:");
20         for (int i = 0; i < newarray.length; i++) {
21             System.out.print(newarray[i]+" ");
22         }
23          }

例10:

 1 public static void main(String[] args) {        
 2         Scanner input=new Scanner(System.in);    
 3         String[] musics = new String[]{"Island","Ocean","Pretty","Sun"};
 4         int index = musics.length; //保存新歌插入位置
 5         //輸出插入前的結果
 6         System.out.print("插入前的數組為:");
 7         for(int i = 0; i < musics.length ; i++){
 8         System.out.print(musics[i]+" ");
 9         }
10         //新數組
11         String[] newMusics = new String[musics.length+1];//新歌曲數組
12         String music = ""; //保存用戶輸入的歌曲名稱
13           //將數組musics中的元素複製到新歌曲數組newMusics中
14         for(int i = 0; i < musics.length; i++){
15         newMusics[i] = musics[i];
16         }
17         //輸入歌曲名稱
18        System.out.print("\n請輸入歌曲名稱:");
19         music = input.nextLine();
20         //找到新元素的插入位置
21         for(int i = 0; i < musics.length; i++){
22         if(musics[i].compareToIgnoreCase(music) > 0){ 
23             index = i;
24         break;
25         }
26         }
27         //元素後移
28         for(int i = newMusics.length-1; i > index; i--){
29         newMusics[i] = newMusics[i-1]; //index下標開始的元素後移一個位置
30         }
31         newMusics[index] = music; //新元素放在index的位置 地址
32         System.out.print("逆序處理後的數組為:");
33         for (int i = 0; i < newMusics.length; i++) {
34             System.out.print(newMusics[index]+" " );
35         }
36         
37         }
38     
39     }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 前言 作為一隻菜鳥,之前學了一段時間的WPF,但是沒有總結,過了一學期發現好多東西都忘記了,很多東西還是需要記下來,以備後續複習。 數據綁定在事件中應用非常廣泛,可以有效地減少代碼量,那麼什麼是數據綁定?說的簡單就是從源對象提取一些信息,將其用於設置目標對象的屬性,這裡有一點需要註意,目標屬性需要是
  • c語言inline函數的使用 轉載自:http://blog.chinaunix.net/uid-21843265-id-3056446.html 大學在教科書上學習過inline函數,定義為inline函數之後,會省去函數調用的開銷,直接嵌套彙編代碼,取代函數調用,提高效率。工作後項目中也 很少用
  • 在《喜劇之王》中,周星馳扮演的尹天仇,一直夢想成為一名演員,而他不管是在扮演跑龍套,或者在街坊中開設演員訓練班,亦或成為主角時,他對待演員的態度,始終是認真,熱愛而又投入的。而那一本他隨身攜帶的書--《演員的自我修養》,儘管不知道裡面具體寫的是什麼,但我猜,他對待演員的態度和行為,就是書中內容顯示的
  • implode把數組轉成字元串的函數,在組合SQL語句時候使用特好使! 比如 $a = array('a','b','c');$b = implode(',', $a);echo $b; 返回的字元串就是 a,b,c explode把字元串組成的數組 $pizza = "piece1 piece2 
  • strlen() 和 strcpy()函數的區別,這兩個一個是返回一個C風格字元串的長度,一個是對一個C風格字元串的拷貝,兩個本來功能上是不同的,此外,他們還有一些細小的區別:strlen("hello")返回的結果是5,是不包含字元串結尾處的‘\0’,但是strcpy(str1,str2),會拷貝
  • /* * String的轉換功能: * byte[] getBytes():把字元串轉換為位元組數組。 * char[] toCharArray():把字元串轉換為字元數組。 * static String valueOf(char[] chs):把字元數組轉成字元串。 * static String
  • 一、冒泡演算法實例: a = [32,5,22,41,7,31,12,102,74,37,9,25] 1、方法1: for i in range(len(a)): for j in range(len(a)-1): if a[j] > a [j+1]: tmp = a[j] a[j] = a[j+1]
  • XHXJ's LIS 題意:求出給定區間[L,R] (0<L<=R<263-1 and 1<=K<=10) 中數滿足LIS(非連續嚴格遞增子序列)為K的個數? 如區間[123,321]中的124的LIS為3; <1> 總結數位DP的優化方式: 歸納高位之間的相同點,就是狀態的轉化是關鍵; 例: 1.
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...