中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java編寫一個含有100個隨機值的文本,且從文本中讀回數據并以升序顯示數據

發布時間:2020-07-19 06:41:20 來源:網絡 閱讀:489 作者:夢T醒 欄目:編程語言
import java.io.*;
import java.util.*;
public class WriteArray
{
    public static void main(String[] args) throws Exception
    {
        System.out.println("請輸入文件名");
        Scanner fileName=new Scanner(System.in);
        File file=new File(fileName.nextLine());

        if(!file.exists())//判斷文件是否存在
        {
            PrintWriter output=new PrintWriter(file);
            Random r=new Random();
            for(int i=0;i<100;i++)
            {
                output.print(r.nextInt(1000)+" ");
            }
            output.close();
        }
        else
        {
            Scanner input=new Scanner(file);
            int[] arr =new int[100];
            int i=0;
            while (input.hasNext())//如果還有數據讀取,返回true
            {
                arr[i++]=input.nextInt();
            }
            input.close();
            Arrays.sort(arr);//升序排列
            for(i=0;i<arr.length;i++)
            {
                if(i%10==9)//換行輸出
                {
                    System.out.println(arr[i]);
                }
                else
                {
                    System.out.print(arr[i]+"\t");
                }
            }
        }
    }
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吉木乃县| 广德县| 安徽省| 惠州市| 花莲市| 柯坪县| 化州市| 海阳市| 香河县| 绵竹市| 永康市| 环江| 嵊州市| 沧州市| 宁明县| 定兴县| 乐安县| 澎湖县| 延吉市| 仪陇县| 东城区| 宁波市| 桑植县| 连平县| 始兴县| 海丰县| 台州市| 定襄县| 香河县| 古浪县| 德江县| 荆门市| 通榆县| 武安市| 维西| 嘉善县| 瑞金市| 石嘴山市| 大连市| 铜鼓县| 华蓥市|