#include
#define inf 10000000
/** 輸入一些整數,求出它們的最小值、最大值和平均值(保留3位小數)。輸入保證這些
數都是不超過1000的整數。
**/// 標準輸入輸出
int main ()
if (x > max)
n++;
}printf("%d %d %.3f\n", min , max, (double)s / n);
return
0;}
#define local
#include
#define inf 10000000
/** 輸入一些整數,求出它們的最小值、最大值和平均值(保留3位小數)。輸入保證這些
數都是不超過1000的整數。
**/// 重定向
int main ()
if (x > max)
n++;
}printf("%d %d %.3f\n", min , max, (double)s / n);
return
0;}
#include
#define inf 10000000
/** 輸入一些整數,求出它們的最小值、最大值和平均值(保留3位小數)。輸入保證這些
數都是不超過1000的整數。
**/// fopen
int main ()
if (x > max)
n++;
}fprintf(fout, "%d %d %.3f\n", min , max, (double)s / n);
fclose(fin);
fclose(fout);
return
0;}
演算法競賽之 輸入輸出重定向
當我們求解acm題目時,通常在設計好演算法和程式後,要在除錯環境 例如vc等 中執行程式,輸入測試資料,當能得到正確執行結果後,才將程式提交到oj中。但由於除錯往往不能一次成功,每次執行時,都要重新輸入一遍測試資料,對於有大量輸入資料的題目,輸入資料需要花費大量時間。乙個好的方法是用檔案一一把輸入資...
程式競賽輸入輸出部分(標準的輸入和輸出)
freopen c out.txt r stdin 輸入freopen out.txt w stdout 輸出 也可以在程式執行時臨時修改 abc.exe.txt abc.exe out.txt 程式競賽題目的特點 只做三件事 1 讀入資料。2 計算結果。3 列印輸出。提示 競賽中,輸入輸出不要列印...
學習筆記 競賽中的輸入輸出問題
一 輸入一些整數,求出他們的最小值,最大值和平均值 樣例輸入 2 8 3 5 1 7 3 6 樣例輸出 1 8 4.375 程式一 include include using namespace std intmain printf d d 3f n min,max,double s n retur...