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: CT12812301281
In contest: 1281

#include <stdio.h>
#include <math.h>
#include <string.h>

int main () {
	char a[300],b[300];
	int i;
	
	while (scanf("%s",a) != EOF) {
		for (i = 0;i < strlen(a);i++) {
			if (a[i] >= 'A' && a[i] <= 'Z') {
				if (a[i] != 'Z') {
					a[i] = a[i] + 33;
				} else {
					a[i] = 'a';
				}
			} else if (a[i] >= 'a' && a[i] <= 'z') {
				if (a[i] == 'a' || a[i] == 'b' || a[i] == 'c') {
					a[i] = '2';
				}
				if (a[i] == 'd' || a[i] == 'e' || a[i] == 'f') {
					a[i] = '3';
				}
				if (a[i] == 'g' || a[i] == 'h' || a[i] == 'i') {
					a[i] = '4';
				}
				if (a[i] == 'j' || a[i] == 'k' || a[i] == 'l') {
					a[i] = '5';
				}
				if (a[i] == 'm' || a[i] == 'n' || a[i] == 'o') {
					a[i] = '6';
				}
				if (a[i] == 'p' || a[i] == 'q' || a[i] == 'r' || a[i] == 's') {
					a[i] = '7';
				}
				if (a[i] == 't' || a[i] == 'u' || a[i] == 'v') {
					a[i] = '8';
				}
				if (a[i] == 'w' || a[i] == 'x' || a[i] == 'y' || a[i] == 'z') {
					a[i] = '9';
				}
			}
		}
		printf("%s\n",a);
	}
	return 0;
}