题解 | #小乐乐找最大数#
小乐乐找最大数
https://www.nowcoder.com/practice/ae6a21920cac4f9184c8ecfcc87f89b9
#include <algorithm> #include <iostream> #include <cmath> using namespace std; int main() { int a=0, b=0,n=0,max; while (cin>>b) { if(b>a) { a=b; } } cout<<a; } // 64 位输出请用 printf("%lld")