답안 #634408

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
634408 2022-08-24T11:05:45 Z ahmed_shafik 뒤집기 (IOI16_reverse) C++17
컴파일 오류
0 ms 0 KB
int64_t rev(int64_t a[],ll n)
{
    for(ll i=n-1; i>=0; i--)
    {
        cout<<arr[i]<<' ';
    }
    cout<<endl;
}

Compilation message

reverse.cpp:1:1: error: 'int64_t' does not name a type
    1 | int64_t rev(int64_t a[],ll n)
      | ^~~~~~~