码迷,mamicode.com
首页 > 其他好文 > 详细

c数组

时间:2014-09-01 17:10:03      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   strong   for   div   log   

c语言二维数组自动初始化小算法

#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

 

c数组

标签:style   blog   color   os   io   strong   for   div   log   

原文地址:http://www.cnblogs.com/code-beautiful/p/3949331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!