#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 可代替大量的数据输入
时间: 2024-10-05 20:31:53
#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 可代替大量的数据输入