Write a program that reads three integer number from keyboard and print only when all 3 are equal. the program should stop when a negative integer in entered.
1
Expert's answer
2012-10-26T10:56:04-0400
#include<iostream> #include<conio.h> using namespace std; int main() { int first, second, third;& cout << "Enter first number" << endl; cin >> first; cout << "Enter second number" << endl; cin >> second; cout << "Enter third number" << endl; cin >> third;
if (first == second == third) { & cout << "Numbers are equal" << endl; }
Comments
Leave a comment