Header Ads

Header ADS

ELIGIBLE FOR VOTE OR NOT IN C++

#include <iostream>
using namespace std;

int main ()
{
    int age;

    cout<<"PLEASE ENTER YOUR AGE : ";
    cin>>age;

    if(age >= 18)
    {
        cout<<"YOU ARE ELIGIBLE FOR VOTE"<<endl;
    }
    else
    {
       cout<<"YOU ARE NOT ELIGIBLE FOR VOTE"<<endl;
    }

    return 0;
}
OUTPUT


No comments

Powered by Blogger.