제출 #634412

#제출 시각아이디문제언어결과실행 시간메모리
634412ahmed_shafikReversing a Sequence (IOI16_reverse)C++17
컴파일 에러
0 ms0 KiB
int64_t rev(int64_t a[],ll n)
{
    for(long long i=n-1; i>=0; i--)
    {
        cout<<arr[i]<<' ';
    }
    cout<<endl;
}

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

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