freopen重定向输入
Posted 锅里煮水
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了freopen重定向输入相关的知识,希望对你有一定的参考价值。
#include <bits\stdc++.h> using namespace std; int main() { freopen("C:\\Users\\dcf\\Desktop\\txt.txt","r",stdin); int n,mx=0; while(cin>>n) { if(n>mx) mx=n; } cout<<mx<<endl; return 0; }
freopen 可代替大量的数据输入
以上是关于freopen重定向输入的主要内容,如果未能解决你的问题,请参考以下文章