fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. //必要があれば変数などを追加してもOKです
  5.  
  6. int main(){
  7. int i,j;
  8. int a,b;
  9. int **mat;
  10. scanf("%d %d",&a,&b);
  11.  
  12. //ここで2次元配列の動的確保をする
  13. mat = (int**)malloc(sizeof(int*)*a);
  14. for(int x=0;x<a;x++){
  15. mat[x] = (int*)malloc(sizeof(int)*b);}
  16.  
  17. //ここで2次元配列に数値を代入する
  18. int w=0;
  19. for(int y=0;y<a;y++){
  20. for(int z=0;z<b;z++){
  21. w = w +1;
  22. mat[y][z] = w;}}
  23.  
  24. //以下の部分は表示の部分です
  25. //いじらなくてOK
  26. for(i=0;i<a;i++){
  27. for(j=0;j<b;j++){
  28. printf("%d ",mat[i][j]);
  29. }
  30. printf("\n");
  31. }
  32.  
  33. //さて,最後に忘れずにすることと言えば?
  34.  
  35.  
  36. return 0;
  37. }
  38.  
Success #stdin #stdout 0.01s 5284KB
stdin
2 3
stdout
1 2 3 
4 5 6