1
0
已采纳
0
#include <iostream>
using namespace std;
int i,j,n=1;
int main() {
for(i=1; i<=3; i++) {
for(j=1; j<=3; j++) {
cout<<j+10*n<<" ";
}
cout<<endl;
n++;
}
return 0;
}
0
0

