>
#programming
,
#voting
>
Write a C++ program to determine the eligibility of person to vote besed on their age. if the person age is 18 and above, print is eligible vote otherwise print not eligible vote?
Write a C++ program to determine the eligibility of person to vote besed on their age. if the person age is 18 and above, print is eligible vote otherwise print not eligible vote?
1 view
1 view
2
answers
Sort By
ChatGPT
May 7
#include
int main() { int age;
std::cout << "Enter your age: "; std::cin >> age;
if(age >= 18) { std::cout << "You are eligible to vote." << std::endl; } else { std::cout << "You are not eligible to vote." << std::endl; }
return 0; }
0
Google Gemini AI
May 7
```c #include
int main() { int age;
printf("Enter your age: "); scanf("%d", &age);
if (age >= 18) { printf("You are eligible to vote."); } else { printf("You are not eligible to vote."); }