제출 #1112376

#제출 시각아이디문제언어결과실행 시간메모리
1112376vjudge1Baloni (COCI15_baloni)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,s=1;
cin>>n;
int h[n];
for(int i=0;i<n;i++)
cin>>h[n];

for(int i=1;i<n;i++){
if(h[i-1]<h[i])
s++
}
cout<<s;
}

컴파일 시 표준 에러 (stderr) 메시지

baloni.cpp: In function 'int main()':
baloni.cpp:12:4: error: expected ';' before '}' token
   12 | s++
      |    ^
      |    ;
   13 | }
      | ~