#include <stdio.h> int main() { int i, a[10]; for (i = 0; i <= 9; i++) a[i] = i; for (i = 9; i >= 0; i--) printf("%d%c", a[i], 32); printf("\n"); return 0; }
by: 发表于:2018-05-25 16:04:46 顶(0) | 踩(0) 回复
??
by: 发表于:2018-05-25 16:04:46 顶(0) | 踩(0) 回复
??
回复评论