Answer to Question #15460 in C++ for Joe Washington

Question #15460
Write a program that reads in two integers and prints which value is larger
1
Expert's answer
2012-09-28T08:56:45-0400
#include<iostream.h>

int q, p;
void main(){
cout<<"Enter the first integer: ";
cin>>q;
cout<<"Enter the secondt integer: ";
cin>>p;
if (p>q) cout<<"The second integer is larger.\n";
if (p<q) cout<<"The first integer is larger.\n";
if (p==q) cout<<"The given integers are equal.\n";
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS