#include <stdio.h> int main() { int a[10]; for (int i = 0; i < 10; i++) { scanf("%d", &a[i]); } for (int j = 9; j >= 0; j--) { //数组逆序输出,到j<0结束 printf("%d ", a[j]); } return 0; }
import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner sc=new Scanner(System.in); int[] a=new int[10]; for(int i=0;i<9;i++) { a[i]=sc.nextInt(); } for(int j=9;j>=0;j--) { System.out.print(a[j]+" "); } } }
0.0分
2 人评分
多输入输出练习1 (C语言代码)浏览:1219 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:633 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:1072 |
C语言训练-阶乘和数* (C语言代码)-------- 呆板写法浏览:1397 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:1368 |
【绝对值排序】 (C语言代码)浏览:892 |
【偶数求和】 (C语言代码)浏览:460 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:383 |
Quadratic Equation (C语言代码)浏览:1034 |
C二级辅导-等差数列 (C语言代码)浏览:891 |