您好,登錄后才能下訂單哦!
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");
}
}
}
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。