java编写一个含有100个随机值的文本,且从文本中读回数据并以升序显示数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java编写一个含有100个随机值的文本,且从文本中读回数据并以升序显示数据相关的知识,希望对你有一定的参考价值。

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"); } } } } }

以上是关于java编写一个含有100个随机值的文本,且从文本中读回数据并以升序显示数据的主要内容,如果未能解决你的问题,请参考以下文章

一个VB程序的编写,高手进来看看,追加至最高分!

用VB做一个产生随机数的程序

热题100_20230510

java 编写一C程序,随机生成20个1 ~ 100的随机整数......

如何将数字转换为文本[重复]

R语言写简单程序 已知一个文本中有小数和整数,去除其中的整数(保留含有小数点的数字)