#include<stdio.h> void main() { int a[100]={0}; int i; for(i=1;i<101;i++) { a[i]=i; printf("%5d",a[i]); if(i%10==0) printf("\n"); } printf("\n"); }