c++ get maximum of 3 numbers code example
Example 1: max three values c++
int a = 1;
int b = 2;
int c = 3;
int m = std::max({a, b, c});
Example 2: how to find the max b=etween 3number in cpp
#include <iostream>
using namespace std;
int main() {
float n1, n2, n3;
cout << "Enter three numbers: ";
cin >> n1 >> n2 >> n3;
if(n1 >= n2 && n1 >= n3)
cout << "Largest number: " << n1;
if(n2 >= n1 && n2 >= n3)
cout << "Largest number: " << n2;
if(n3 >= n1 && n3 >= n2)
cout << "Largest number: " << n3;
return 0;
}