fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5. int i,j,k;
  6. int a,b;
  7. int **mat;
  8. scanf("%d %d",&a,&b);
  9.  
  10. mat = (int **)malloc(sizeof(int*)*b);
  11. if(mat == NULL){
  12. printf("ERROR\n");
  13. return 0;
  14. }
  15.  
  16. for(k=0;k<b;k++){
  17. mat[k] = (int *)malloc(sizeof(int)*a);
  18. if(mat[k] == NULL){
  19. printf("ERROR\n");
  20. return 0;
  21. }
  22. }
  23. //ここで2次元配列の動的確保をする
  24.  
  25. int count = 0;
  26. for(i=0;i<a;i++){
  27. for(j=0;j<b;j++){
  28. mat[i][j] = ++count;
  29. }
  30. }
  31. //ここで2次元配列に数値を代入する
  32.  
  33.  
  34. //以下の部分は表示の部分です
  35. //いじらなくてOK
  36. for(i=0;i<a;i++){
  37. for(j=0;j<b;j++){
  38. printf("%d ",mat[i][j]);
  39. }
  40. printf("\n");
  41. }
  42.  
  43. //さて,最後に忘れずにすることと言えば?
  44. free(mat);
  45.  
  46. return 0;
  47. }
  48.  
Success #stdin #stdout 0s 5280KB
stdin
2 3
stdout
1 2 3 
4 5 6