eligible for vote

PHOTO EMBED

Sun Aug 11 2024 09:37:06 GMT+0000 (Coordinated Universal Time)

Saved by @prawarjain

#include<iostream>
using namespace std;
int main()
{
    int age;
    cout<<"enter the age";
    cin>>age;
    if (age>18)
    {
        cout<<"valid for vote";
    }
    else
    {
        cout<<"not valid for vote";
    }
    return 0;
}
content_copyCOPY