#includeint main(){int i, b[5],j;printf("输入5个数:");for (i = 0; i < 5; i++)scanf("%d",b[i]);printf("5个数是:");for (i = 0; i < 5; i++)printf("%5d",b[i]);}