Krit Th.
20+ yrs in programming professional markets, FMCG researchers, system analyst, university lecturers, broadcasting expert, and so on.
#include <iostream>
using namespace std;
int main()
{
int age;
cout << "Please enter your age" << endl;
cin >> age;
if (age >= 18)
{
cout << "สามารถไปสมัครสอบใบขับขี่ได้" << endl;
}
else
{
cout << "เสียใจด้วย, ยังไม่สามารถสอบใบขับขี่ได้" << endl;
}
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int age;
cout << "Please enter your age" << endl;
cin >> age;
if (age >= 18) //first condition
{
cout << "ท่านมีอายุเกิน 18 ปี" << endl;
if (age <= 80) //second condition
{
cout << "อนุญาตให้ขับรถ" << endl;
}
else
{
cout << "ท่านแก่เกินไป ไม่ควรขับรถแล้ว" << endl;
}
}
else
{
cout << "เสียใจด้วย, ท่านยังเด็กเกินไปที่จะขับรถ" << endl;
}
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int age;
cout << "Please enter your age" << endl;
cin >> age;
if (age >= 18 && age <= 80) //first condition
{
cout << "ท่านมีอายุเกิน 18 ปี" << endl;
cout << "อนุญาตให้ขับรถ" << endl;
}
else if(age > 80)
{
cout << "ท่านมีอายุเกิน 18 ปี" << endl;
cout << "ท่านแก่เกินไป ไม่ควรขับรถแล้ว" << endl;
}
else
{
cout << "เสียใจด้วย, ท่านยังเด็กเกินไปที่จะขับรถ" << endl;
}
return 0;
}
Aj. Krit Th.
https://www.kritth.com
By Krit Th.