Problem | party_noi |
---|---|
User | n1k1trh |
Submission Time | 2025-08-05 16:29:38 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
party_noi.cpp: In function ‘int main()’:
party_noi.cpp:15:54: error: expected ‘,’ or ‘;’ before ‘}’ token
15 | int n; cin >> n; if(n % 2 == 0){int seats = n / 2}; else seats = (n+1)/2; //cout << seats;
| ^
party_noi.cpp:15:57: error: ‘else’ without a previous ‘if’
15 | int n; cin >> n; if(n % 2 == 0){int seats = n / 2}; else seats = (n+1)/2; //cout << seats;
| ^~~~
party_noi.cpp:15:62: error: ‘seats’ was not declared in this scope
15 | int n; cin >> n; if(n % 2 == 0){int seats = n / 2}; else seats = (n+1)/2; //cout << seats;
| ^~~~~