fork(1) download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int main(){
  6. int i,j,k,q=0;
  7. int a,b;
  8. int **mat;
  9. scanf("%d %d",&a,&b);
  10. mat=(int **)malloc(sizeof(int*)*a);
  11. for(i=0;i<a;i++){
  12. mat[i]=(int **)malloc(sizeof(int*)*b);
  13. }
  14.  
  15. for(int t=0;t<a;t++){
  16. for(int r=0;r<b;r++,q++){
  17. mat[t][r]=q;
  18. }
  19. }
  20.  
  21.  
  22. //以下の部分は表示の部分です
  23. //いじらなくてOK
  24. for(i=0;i<a;i++){
  25. for(j=0;j<b;j++){
  26. printf("%d ",mat[i][j]);
  27. }
  28. printf("\n");
  29. }
  30.  
  31. free(mat);
  32.  
  33.  
  34. return 0;
  35. }
  36.  
Success #stdin #stdout 0s 5268KB
stdin
3 2
stdout
0 1 
2 3 
4 5