forked from dharmanshu1921/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path30E.cpp
40 lines (33 loc) · 849 Bytes
/
30E.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Program to find largest of four numbers
// Write a program to findthe greatest of three given integers.
#include <iostream>
using namespace std;
int main()
{
int a, b, c, d;
cout << "Enter the value of 'a' : " << endl;
cin >> a;
cout << "Enter the value of 'b' : " << endl;
cin >> b;
cout << "Enter the value of 'c' : " << endl;
cin >> c;
cout << "Enter the value of d : " << endl;
cin >> d;
if (a > b && a > c && a > d)
{
cout << "a is the greatest" << endl;
}
if (b > c && b > a && b > d)
{
cout << "b is the greatest" << endl;
}
if (c > a && c > b && c > d)
{
cout << "c is the greatest" << endl;
}
if (d > a && d > b && d > c)
{
cout << "d is greatest" << endl;
}
return 0;
}