제출 #117274

#제출 시각아이디문제언어결과실행 시간메모리
117274WongHokFong_cppThe Big Prize (IOI17_prize)C++14
컴파일 에러
0 ms0 KiB
#include <iostream>
#include <cstdio>
#include <cstdio>
#include <iomanip>
#include <cstring>
#include <algorithm>
#include "prize.h" 
using namespace std;
int find_best(int n)
{
	int l=0,r=n-1;
	int mid=(r+l)/2;
	while(0==0)
	{
		int a[2]=ask(mid);
		if(a[0]+a[1]==0) return mid;
		if(a[0]==1) r=mid-1;
		else l=mid+1;
	}
}

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

prize.cpp: In function 'int find_best(int)':
prize.cpp:15:15: error: array must be initialized with a brace-enclosed initializer
   int a[2]=ask(mid);
            ~~~^~~~~