新手 文件的使用
文件的使用一定要用指针吗?freopen该怎样使用? 还有如果数据过多(如多case 中n个矩阵) 手敲好烦 该如何处理 VC好像无法直接复制,求指教 谢谢
#include<stdio.h>
int main()
{
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
int x,n=0,min,max,s=0;
while(scanf("%d",&x)==1)
{
s+=x;
if(x<min)min=x;
if(x>max)max=x;
n++;
}
printf("%d %d %3lf",(double)s/n);
return 0;
}