题目:反向排序数组
一、 语言和环境
A、 实现语言
C
B、 环境要求
1、 Turbo C 2.0或者以上版本开发环境
二、要求
请用C语言编写一个程序,完成如下功能:定义一个有五个元素的整型数组,输入5个整数为数组赋值,要求对数组进行反序排列,输出结果,最后把反序后的结果以二进制形式写入到test.txt文件中。
三、实现步骤
1、声明一个整型数组。
2、在主程序中,使用循环结构控制连续输入。
3、对数组进行反向排序,并输出。
3. 1、可以写一个函数对数组进行反向排序
3. 2、输出原始数组和排序后的数组
4、把反序后的结果以二进制形式写入到test.txt文件中
运行结果如下图:
Please enter elements of the array: 1
Please enter elements of the array: 2
Please enter elements of the array: 3
Please enter elements of the array: 4
Please enter elements of the array: 5
The original array is:
1 2 3 4 5
The final array after sorted:
5 4 3 2 1
The elements of array have been written in the test.txt
D:\turboc>_
四、注意事项
A、请注意在程序中进行异常处理;
B、请注意代码的书写、命名符合规范;