質問編集履歴

1

誤字

2019/09/25 06:10

投稿

the_hoots_under
the_hoots_under

スコア33

test CHANGED
File without changes
test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  ```ここに言語を入力
18
18
 
19
- void allocate_arr(int **arr,int N){
19
+ void allocate_arry(int **arry,int N){
20
20
 
21
21
  arry = new int*[N];
22
22
 
@@ -30,7 +30,7 @@
30
30
 
31
31
 
32
32
 
33
- void delete_arr(int **arr,int N){
33
+ void delete_arry(int **arry,int N){
34
34
 
35
35
  for (int i = 0; i < N; i++) {
36
36
 
@@ -50,9 +50,9 @@
50
50
 
51
51
  int N = 10;
52
52
 
53
- allocate_arr(arr,N);
53
+ allocate_arry(arry,N);
54
54
 
55
-   delete_arry(arr,N)
55
+   delete_arry(arry,N)
56
56
 
57
57
  return 0;
58
58