import java.util.Scanner;
public class Main {
public static void rever(int[] array){
for(int i=9;i>=0;i--)
System.out.print(array[i]+" ");
}
public static void main(String[] arg){
Scanner sc = new Scanner(System.in);
int[] array = new int[10];
for(int i=0;i<10;i++)
array[i]=sc.nextInt();
rever(array);
}
}
0.0分
0 人评分
校门外的树 (C语言代码)浏览:667 |
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:529 |
C语言训练-角谷猜想 (C++代码)(3N+1问题)浏览:1449 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:735 |
printf基础练习2 (C语言代码)浏览:883 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:489 |
简单的a+b (C语言代码)浏览:295 |
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:511 |
C语言程序设计教程(第三版)课后习题9.1 (C语言代码)浏览:660 |
核桃的数量 (C语言代码)浏览:632 |