Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Why won't this work

+1 vote
asked May 1, 2020 by Ivana Ogunlaja (640 points)
#include <iostream>
using namespace std;

int main()
{
    int age
    cout << "How old are you";
    cin >> age;
    if(age>17){
        cout << "You can vote";
    }else{
        cout << "You can't vote";
    }
    return 0;
}

1 Answer

+1 vote
answered May 2, 2020 by LiOS (6,420 points)
selected May 2, 2020 by Ivana Ogunlaja
 
Best answer
Missing ; on line 6

Working code:

#include <iostream>
using namespace std;

int main()
{
    int age;
    cout << "How old are you";
    cin >> age;
    if(age>17){
        cout << "You can vote";
    }else{
        cout << "You can't vote";
    }
    return 0;
}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...