Computer Science, asked by adritakmr, 5 months ago

write a program to display "Valid Voter" if the following condition is true: Age of the person should be >=18
pls tell fast
whoever answers fastest i will mark as brainiest

Answers

Answered by sahilkumarmannu
1

Answer:

answer is false

Explanation:

answer is false

Answered by yunnankhatri
2

Answer:

#include<iostream>

using namespace std;

int main( )

{

int age;

cout<<"Enter age";

cin>>age;

if(age>=18)

{

cout<<"Valid Voter";

}

else

{

cout<<"Invalid Voter";

}

return 0;

};

Similar questions