Submission #9502

#TimeUsernameProblemLanguageResultExecution timeMemory
9502silasVeni, vidi, vici (kriii2_V)C++98
Compilation error
0 ms0 KiB
int main() { int n; string k; cin >> n; cin >> k; for(int i = 0; i < k.size() ; i += 2) { if (i == k.size() - 1) break; char ascii = (k[i] - 'a' + k[i + 1] - 'a' - n + 26) % 26 + 'a'; printf("%c", ascii); } }

Compilation message (stderr)

V.cpp: In function 'int main()':
V.cpp:4:2: error: 'string' was not declared in this scope
V.cpp:4:9: error: expected ';' before 'k'
V.cpp:5:5: error: 'cin' was not declared in this scope
V.cpp:6:12: error: 'k' was not declared in this scope
V.cpp:12:27: error: 'printf' was not declared in this scope