Start: Jul, 05, 2019 08:40:00
2019年度暑期短学期达标测试
End: Jul, 05, 2019 11:40:00
Time elapsed:
Time remaining:

Problem_ID: D
Result: Accepted
Time: 3ms
Memory: 1120kB
Author: CT12811491281
In contest: 1281

#include<stdio.h>
#include<string.h>
int main(){
	char s[102];
	while(gets(s)){	
		int ans = strlen(s);
		for(int i = 0;i < strlen(s);i++){
			if(s[i] == 'a'||s[i] == 'b'||s[i] == 'c')
				s[i] = '2';
			if(s[i] == 'd'||s[i] == 'e'||s[i] == 'f')
				s[i] = '3';
			if(s[i] == 'g'||s[i] == 'h'||s[i] == 'i')
				s[i] = '4';
			if(s[i] == 'j'||s[i] == 'k'||s[i] == 'l')
				s[i] = '5';
			if(s[i] == 'm'||s[i] == 'n'||s[i] == 'o')
				s[i] = '6';
			if(s[i] == 'p'||s[i] == 'q'||s[i] == 'r'||s[i] == 's')
				s[i] = '7';
			if(s[i] == 't'||s[i] == 'u'||s[i] == 'v')
				s[i] = '8';
			if(s[i] == 'w'||s[i] == 'x'||s[i] == 'y'||s[i] == 'z')
				s[i] = '9';
			if(s[i] == 'A')
				s[i] = 'b';
			if(s[i] == 'B')
				s[i] = 'c';
			if(s[i] == 'C')
				s[i] = 'd';
			if(s[i] == 'D')
				s[i] = 'e';
			if(s[i] == 'E')
				s[i] = 'f';
			if(s[i] == 'F')
				s[i] = 'g';
			if(s[i] == 'G')
				s[i] = 'h';
			if(s[i] == 'H')
				s[i] = 'i';
			if(s[i] == 'I')
				s[i] = 'j';
			if(s[i] == 'J')
				s[i] = 'k';
			if(s[i] == 'K')
				s[i] = 'l';
			if(s[i] == 'L')
				s[i] = 'm';
			if(s[i] == 'M')
				s[i] = 'n';
			if(s[i] == 'N')
				s[i] = 'o';
			if(s[i] == 'O')
				s[i] = 'p';
			if(s[i] == 'P')
				s[i] = 'q';
			if(s[i] == 'Q')
				s[i] = 'r';
			if(s[i] == 'R')
				s[i] = 's';
			if(s[i] == 'S')
				s[i] = 't';
			if(s[i] == 'T')
				s[i] = 'u';
			if(s[i] == 'U')
				s[i] = 'v';
			if(s[i] == 'V')
				s[i] = 'w';
			if(s[i] == 'W')
				s[i] = 'x';
			if(s[i] == 'X')
				s[i] = 'y';
			if(s[i] == 'Y')
				s[i] = 'z';
			if(s[i] == 'Z')
				s[i] = 'a';
		}
		puts(s);
	}
}