xt5-12-1.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4.  {int j,n;
  5.   char ch[80],tran[80];
  6.   cout<<"input cipher code:";
  7.   gets(ch);
  8.   cout<<"cipher code:"<<ch<<endl;
  9.   j=0;
  10.   while (ch[j]!='')
  11.   { if ((ch[j]>='A') && (ch[j]<='Z'))
  12.       tran[j]=155-ch[j];
  13.     else if ((ch[j]>='a') && (ch[j]<='z'))
  14.       tran[j]=219-ch[j];
  15.     else
  16.       tran[j]=ch[j];
  17.     j++;
  18.   }
  19.   n=j;
  20.   cout<<"original text:";
  21.   for (j=0;j<n;j++)
  22.     putchar(tran[j]);
  23.   cout<<endl;
  24.   return 0;
  25.  }