c_cpp c中3乘3阵列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp c中3乘3阵列相关的知识,希望对你有一定的参考价值。

#include "stdio.h"

//makes a 3 by 3 matrix and prints them all out
int main(void) {
    // Disable stdout buffering
    setvbuf(stdout, NULL, _IONBF, 0);
    int i, j;
    int machine[3][3];
    for(i=0;i<3;i++) for(j=0;j<3;j++) machine[i][j] = 0;
    machine[0][2] = 100;
    for(i=0;i<3;i++) for(j=0;j<3;j++) printf("%d", machine[i][j]);

    return 0;
}

以上是关于c_cpp c中3乘3阵列的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp C阵列

c_cpp 阵列

c_cpp 384.随机播放阵列

c_cpp 53.最大子阵列

c_cpp 53.最大子阵列

c_cpp 最大乘积子阵列