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