Write a program to find the youngest among the three persons by taking their ages as input?
#include <iostream>
using namespace std;
int main()
{
int youngest = 10000, youngest_index;
for (int i = 0; i < 3; ++i) {
int age;
cout << "Please enter age of person " << i+1 << endl;
cin >> age;
if (age < youngest) {
youngest = age;
youngest_index = i;
}
}
cout << "The youngest is person " << youngest_index+1 << endl;
return 0;
}