質問するログイン新規登録

質問編集履歴

1

追記

2020/07/08 19:36

投稿

KYUURI
KYUURI

スコア46

title CHANGED
File without changes
body CHANGED
@@ -1,7 +1,8 @@
1
1
  ### 入力された正の整数までの値の偶数をeven.txt,奇数をodd.txtに保存するプログラムはどのようにすればよろしいでしょうか
2
2
 
3
3
 
4
+ ```C
4
- include <stdio.h>
5
+ #include <stdio.h>
5
6
 
6
7
  int main(void){
7
8
  FILE *i,*j;
@@ -27,4 +28,5 @@
27
28
  fclose(j);
28
29
 
29
30
  return 0;
30
- }
31
+ }
32
+ ```