簡単なパスワードは解読します-華為OJ題

985 ワード

               ,                  。   .                  ,        。        BBS     zvbo9441987,      ,               YUANzhi1987,              ,       ,                            。  
       ,           : 1--1, abc--2, def--3, ghi--4, jkl--5, mno--6, pqrs--7, tuv--8 wxyz--9, 0--0,     ,                     ,             ,  
  :       ,                       , :X,     ,      ,   y  ,   。  ,z    a 。  
          。       ,       100   ,        。         。
e.g.入力:YUANzhi 1987
出力:zvbo 9441987
#include
#include
using namespace std;

int main()
{
	char sInput[100];
	while(cin>>sInput)
	{
		int j=0;
		char sOutput[100];
		for(int i=0;i='A'&&sInput[i]<='Z')
			{
				if(sInput[i]=='Z')
					sOutput[j++]='a';
				else
					sOutput[j++]=sInput[i]-'A'+'a'+1;
			}
			else if(sInput[i]>='a'&&