1804: 【CSP数组】删除数组的最小数▅
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:10
Solved:5
Description
在一个不重复的数组中,请将这个数组的最小数删除后输出。
Input
第一行有一个整数 n ( 5≤n≤100 );
第二行有 n 个不重复的整数。
Output
删除最小数后的数组。
Sample Input Copy
4
9 1 8 0
Sample Output Copy
9 1 8