제출 #677625

#제출 시각아이디문제언어결과실행 시간메모리
677625pbhatscanf 함수 2 (BSC_0_4)C++14
컴파일 에러
0 ms0 KiB
n = input() if len(str(n)) == 1: print("00"+n) elif len(str(n)) == 2: print("0"+n) else: print(n)

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

scanf2.cpp:1:1: error: 'n' does not name a type
    1 | n = input()
      | ^