这是什么格式啊?到底对齐还是不对齐啊?
对齐
void print(int n){ int k=0; //k用来控制换行 for(int i=1;i<=10;i++) { k++; int s=n*i; cout<<s<<" "; if(k%2==0) cout<<endl; }}