Posted inHome
Program to enter three integers and output the biggest integer
#include <iostream.h> #include <conio.h> int main() { clrscr(); int x,y,z,biggest; cout << “Enter 3 integers : “; cin>>x>>y>>z; biggest=x>y?(x>z?x:z):(y>z?y:z); cout << “The biggest integer out of the 3 integers…