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