标签:style blog color os io strong for div log
#include<stdio.h> #include<stdlib.h> int main() { int a[3][4]; for (int i = 0; i < 12; i++) { a[i / 4][i % 4] = i; printf("\n%d,%d,%d", i / 4, i % 4, i); } printf("\n"); for (int i = 0; i < 3; i++) { for (int j = 0; j < 4; j++) { printf("%4d", a[i][j]); } printf("\n"); } system("pause"); }
运行结果:
0,0,0
0,1,1
0,2,2
0,3,3
1,0,4
1,1,5
1,2,6
1,3,7
2,0,8
2,1,9
2,2,10
2,3,11
0 1 2 3
4 5 6 7
8 9 10 11
标签:style blog color os io strong for div log
原文地址:http://www.cnblogs.com/code-beautiful/p/3949331.html