Submission #9380

# Submission time Handle Problem Language Result Execution time Memory
9380 2014-09-28T06:01:43 Z shashack Veni, vidi, vici (kriii2_V) C++
Compilation error
0 ms 0 KB
#include <iostream>
#include <string>
using namespace std;

int main(){
	//freopen("input.txt", "r", stdin);
	string input;
	int n; scanf("%d", &n);getchar();

	while( !cin.eof()){
		cin >> input;
		int len=input.size()-1;
	
		for(int i=0; i<len; i+=2){
			int a=input[i]-97;
			int b=input[i+1]-97;
			int c=(a+b+26-n)%26;
			printf("%c",c+'a');
		}
		printf(" ");
	}
	printf("\n");
	return 0;
}

Compilation message

V.cpp: In function 'int main()':
V.cpp:8:23: error: 'scanf' was not declared in this scope
V.cpp:8:33: error: 'getchar' was not declared in this scope
V.cpp:18:21: error: 'printf' was not declared in this scope
V.cpp:20:13: error: 'printf' was not declared in this scope
V.cpp:22:13: error: 'printf' was not declared in this scope