Run id: 5291
Main.cc:18:12: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
printf("%.0lf %.2lf %d %d\n"tot,ave,maxn,minn);
^
Main.cc: In function 'int main()':
Main.cc:18:33: error: expected ')' before 'tot'
printf("%.0lf %.2lf %d %d\n"tot,ave,maxn,minn);
^
Main.cc:18:50: warning: format '%lf' expects argument of type 'double', but argument 3 has type 'int' [-Wformat=]
printf("%.0lf %.2lf %d %d\n"tot,ave,maxn,minn);
^
Main.cc:18:50: warning: format '%d' expects a matching 'int' argument [-Wformat=]