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