[ create a new paste ] login | about

Link: http://codepad.org/ylvgMwqZ    [ raw code | output | fork ]

C++, pasted on Nov 7:
1
2
3
4
5
6
7
8
#include<iostream.h>
int main()
{int a=11,b=51,c=93,max=0;
if(a>b) max=a;
if(c>a) max=c;
if(b>c) max=b;
cout<<"Cel mai mare numar este "<<max;
}


Output:
1
Cel mai mare numar este 93


Create a new paste based on this one


Comments: