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