답안 #789398

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
789398 2023-07-21T10:39:57 Z Joibangla 사이버랜드 (APIO23_cyberland) C++17
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std; 

int main(){ 
double solve(int n,int m,int h,int k,std::vector<int>x, std::vector<int>y, std::vector<int>c, std::vector<int>arr); 

int ans=0; 

for(i=1 ; i<=n , i++){ 
if(n/i){ 
int ans+=i;
}
else{ 
int ans=-1;
}
return 0;
}

Compilation message

cyberland.cpp: In function 'int main()':
cyberland.cpp:9:5: error: 'i' was not declared in this scope
    9 | for(i=1 ; i<=n , i++){
      |     ^
cyberland.cpp:9:14: error: 'n' was not declared in this scope; did you mean 'yn'?
    9 | for(i=1 ; i<=n , i++){
      |              ^
      |              yn
cyberland.cpp:9:21: error: expected ';' before ')' token
    9 | for(i=1 ; i<=n , i++){
      |                     ^
      |                     ;
cyberland.cpp:11:8: error: expected initializer before '+=' token
   11 | int ans+=i;
      |        ^~
cyberland.cpp:14:5: warning: unused variable 'ans' [-Wunused-variable]
   14 | int ans=-1;
      |     ^~~
cyberland.cpp:7:5: warning: unused variable 'ans' [-Wunused-variable]
    7 | int ans=0;
      |     ^~~
cyberland.cpp:17:1: error: expected '}' at end of input
   17 | }
      | ^
cyberland.cpp:4:11: note: to match this '{'
    4 | int main(){
      |           ^