問題(Question):
自in.txt輸入N筆資料,自out.txt輸出大於10的資料,且由大自小排序
1.in.txt的資料是 12 9 11 13 10 ,out.txt的資料是12 11 13
(讀檔後 限定輸出範圍再存檔)
2.in.txt的資料是12 9 11 13 10,out.txt中的資料為:3
(N筆資料中計算次數)
餵入的資料(Input):
預期的正確結果(Expected Output):
錯誤結果(Wrong Output):
#include<stdio.h>
FILE *fp;
int main ( ){
int i
fp=fopen("in.txt","r+");
for( i=13; i>=10 ; i