Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
c+
SUBMITTED BY:
maloans
DATE:
Jan. 20, 2017, 11:53 p.m.
FORMAT:
Text only
SIZE:
389 Bytes
Raw
Download
Tweet
HITS:
4210
Go to comments
Report
#include <iostream.h>
int main ()
{
int number1, number2;
cout<<"enter the first number :";
cin>>number1;
cout<<"enter the second number :";
cin>>number2;
cout<<"the number1>number2 is :" << (number1>number2) << endl;
cout<<"the number1<number2 is :" << (number1<number2) << endl;
cout<<"the number1==number2 is :" << (number1==number2) << endl;
return 0;
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus