#include <iostream>
#include <fstream>
#include <iomanip>
using namespace std;
int main ()
{
long double a,b,c,max=0;
fstream f_in, f_out;
f_out.setf(ios::fixed);
f_out.precision(0);
f_in.open("input.txt",ios::in);
f_out.open("output.txt",ios::out);
f_in>>a>>b>>c;
max=a;
if (b>max)
max=b;
if (c>max)
max=c;
f_out<<max;
f_out.close();
return 0;
}
На тесте (189285 283 4958439238923098349024) Выдает 4958439238923098000000. Почему на конце нолики?..
Сообщение отредактировано: first_day -