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