Submission #9502

# Submission time Handle Problem Language Result Execution time Memory
9502 2014-09-28T06:52:44 Z silas Veni, vidi, vici (kriii2_V) C++
Compilation error
0 ms 0 KB
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

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