3. WAP TO FIND GREATES OF 2 NUMBERS IN C++ Get link Facebook X Pinterest Email Other Apps February 01, 2014 #include<iostream.h> #include<conio.h> void main() { int a,b; cout << "Enter 2 numbers" ; cin>>a>>b; if (a>b) cout << "Greater is : " << a; else cout << "Greater is : " << b; } Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment