用Java程序将100,102,103,104,105数写入到Dest.txt文件并以相反输出。

日期:2017-08-17 07:57:01 人气:1

用Java程序将100,102,103,104,105数写入到Dest.txt文件并以相反输出。

import java.io.*;class test15 { public static void main(String[] args) { int[] aa = { 101, 102, 103, 104, 105 }; File file = new File("D:/test.txt"); //***答案编写开始位置*** try {
    A+
热门评论