真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java編寫一個(gè)含有100個(gè)隨機(jī)值的文本,且從文本中讀回?cái)?shù)據(jù)并以升序顯示數(shù)據(jù)

import java.io.*;
import java.util.*;
public class WriteArray
{
    public static void main(String[] args) throws Exception
    {
        System.out.println("請(qǐng)輸入文件名");
        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())//如果還有數(shù)據(jù)讀取,返回true
            {
                arr[i++]=input.nextInt();
            }
            input.close();
            Arrays.sort(arr);//升序排列
            for(i=0;i

網(wǎng)站欄目:java編寫一個(gè)含有100個(gè)隨機(jī)值的文本,且從文本中讀回?cái)?shù)據(jù)并以升序顯示數(shù)據(jù)
轉(zhuǎn)載來(lái)于:http://weahome.cn/article/jdjppe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部