编辑代码

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main () {
    srand(time(0));
    int no = rand();
    int cxk[5];
    system("clear");
    printf("欢迎使用云端编译器来运行%d号程序。您可以直接输入5个数字。", no);
    system("clear");
    for(int i = 0; i < 5; i++) {
        scanf("%d", &cxk[i]);
    }
    for(int j = 4; j >= 0; j--) {
        printf("%d ", cxk[j]);
    }
	return 0;
}