1. 列印任意字元的實心正方形
for(int i=0;i<side;i++){ for(int j=0;j<side;j++){ printf(fillChar); } printf("\n"); i++;}