View Code of Problem 68

#include<bits/stdc++.h>

using namespace std;

int main(){
	int a,b,c;
	cin>>a>>b>>c;
	int d=max(max(a,b),c);
	cout<<d<<end1;
}
/*
Main.cc: In function 'int main()':
Main.cc:9:11: error: 'end1' was not declared in this scope
  cout<<d<<end1;
           ^~~~
Main.cc:9:11: note: suggested alternative: 'enum'
  cout<<d<<end1;
           ^~~~
           enum
*/

Double click to view unformatted code.


Back to problem 68