#include <iostream>
using namespace std;
int main ()
{
int age;
cout << "What is your age: ";
cin >> age;
if (age < 0)
{
cout << "Age Can be in -ve????" << endl;
}
else cout << "You Are Eligible to Apply." << endl;
return 0;
}
using namespace std;
int main ()
{
int age;
cout << "What is your age: ";
cin >> age;
if (age < 0)
{
cout << "Age Can be in -ve????" << endl;
}
else cout << "You Are Eligible to Apply." << endl;
return 0;
}
No comments:
Post a Comment