2022年6月27日 星期一

九宮格

 #include <stdio.h>

#include <stdlib.h>


/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char *argv[])

{

int v[3][3]=

{

{1,2,3},

{4,5,6},

{7,8,9}

};

int i,j;

for(i=0;i<3;i++)

{

for(j=0;j<3;j++)

    {

    printf("%d ",v[i][j]);

    }

    printf("\n");

}


return 0;

}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...