4.3 用freopen重定向输入
程序员文章站
2024-03-23 20:40:40
...
当数据比较多的时候,可以直接将输入数据存储在文件中,用freopen进行读入。
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
freopen("a.txt","r",stdin);
int n, maxn = 0;
//while(scanf("%d", &n) != EOF)
//while(scanf("%d", &n) == 1)//scanf("%d", &n)读入一个数,返回值为1
while(cin >> n)
{
if(n > maxn) maxn = n;
}
printf("%d",maxn);
}
上一篇: 创建对象使用键值对形式的加深理解
下一篇: 用Python写猜数字小游戏
推荐阅读