该程序创建一个名为 datafile.txt 的文件,并使用文本 I/O 将随机创建的 100 个整数写入该文件。我还实现了bubbleSort 以升序对数字进行排序,但它没有对它们进行排序。另外,命令行的输出是“排序后的数字是:[I@f72617”100 次。提前致谢。
import java.io.*;
import java.util.Random;
public class Lab5 {
//sort array
static int[] bubbleSort(int[] array) {
for (int pass = 1; pass <= 100; pass++) {
for (int current = 0; current < 100-pass; current++) {
//compare element with next element
if (array[current] > array[current + 1]) {
//swap array[current] > & array[current + 1]
int temp = array[current];
array[current] = array[current + 1];
array[current + 1] = temp;
} //end if
}
}
return array;
}
public static void main(String args[]) {
//Open file to write to
try {
FileOutputStream fout = new FileOutputStream("F:\\IT311\\datafile.txt");
int index = 0;
//Convert FileOutputStream into PrintStream
PrintStream myOutput = new PrintStream(fout);
Random numbers = new Random();
//Declare array
int array[] = new int[100];
for (int i = 0; i < array.length; i++)
{
//get the int from Random Class
array[i] = (numbers.nextInt(100) + 1);
myOutput.print(array[i] + " ");
//sort numbers
int[] sortedArray = bubbleSort(array);
//print sorted numbers
System.out.print("The sorted numbers are: ");
System.out.print(sortedArray);
}
}
catch (IOException e) {
System.out.println("Error opening file: " + e);
System.exit(1);
}
}
}