fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. //必要があれば変数などを追加してもOKです
  5.  
  6. int main(){
  7. int i,j,k=1;
  8. int a,b;
  9. int **mat;
  10. scanf("%d %d",&a,&b);
  11. mat=malloc(a*sizeof(int*));
  12. for(i=0;i<a;i++)
  13. {mat[i]=malloc(b*sizeof(int));}
  14.  
  15. for(i=0;i<a;i++)
  16. {for(j=0;j<b;j++)
  17. {mat[i][j]=k++;}
  18. }
  19. for(i=0;i<a;i++)
  20. {for(j=0;j<b;j++)
  21. {printf("%d ",mat[i][j]);}
  22. printf("\n");}
  23.  
  24.  
  25. free(mat);
  26.  
  27. return 0;
  28. }
Success #stdin #stdout 0.01s 5320KB
stdin
2 3
stdout
1 2 3 
4 5 6