제출 #194128

#제출 시각아이디문제언어결과실행 시간메모리
194128s_avila_g크레이피쉬 글쓰는 기계 (IOI12_scrivener)C++14
컴파일 에러
0 ms0 KiB
char last; string a = ""; void Init() { } void TypeLetter(char L) { last = L; a += last; } void UndoCommands(int U) { } char GetLetter(int P) { last = a[P]; return last; }

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

scrivener.cpp:3:1: error: 'string' does not name a type; did you mean 'struct'?
 string a = "";
 ^~~~~~
 struct
scrivener.cpp: In function 'void TypeLetter(char)':
scrivener.cpp:10:5: error: 'a' was not declared in this scope
     a += last;
     ^
scrivener.cpp: In function 'char GetLetter(int)':
scrivener.cpp:18:12: error: 'a' was not declared in this scope
     last = a[P];
            ^