Answer to Question #16115 in C++ for rexon rueco

Question #16115
c++ program that reads two integers and then uses the conditional expression operator to print either "multiple" or "not" according to whether one of the integers is multiple of the other.
1
Expert's answer
2012-10-09T09:16:45-0400
#include <iostream>
using namespace std;

int main(){
int a,b;
cout<<"ENTer two both numbers, a and b\n";
cin>>a>>b;
if (a*a == b) cout<< "a is multiply of b\n";
else if (b*b == a) cout<< "b is multiply of a\n";
else cout<<"no one integer is multiple of another\n";
system("pause");
return 0;
}

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