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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
Why won't this work
+1
vote
asked
May 1, 2020
by
Ivana Ogunlaja
(
630
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;
}
please-help-cplusplus
Your answer
Your name to display (optional):
Email me at this address if my answer is selected or commented on:
Email me if my answer is selected or commented on
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please
log in
or register.
1 Answer
0
votes
answered
May 2, 2020
by
LiOS
(
6,400
points)
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;
}
commented
May 2, 2020
by
Abhinav
(
150
points)
add semicolon at the end of 'age' declaration in line 6.
Correct : int age;
Your comment on this answer:
Your name to display (optional):
Email me at this address if a comment is added after mine:
Email me if a comment is added after mine
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please
log in
or register.
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.
...