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

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. int main()
  5.  {int j;
  6.   string ch="                              ";
  7.   char *p=&ch[0];            //定义字符指针并使之指向ch的首字符
  8.   cout<<"input cipher code:";
  9.   gets(p);                  //从键盘读入一行字符
  10.   cout<<"cipher code:"<<ch<<endl;
  11.   j=0;
  12.   while (j<=ch.size())
  13.   { if ((ch[j]>='A') && (ch[j]<='Z'))
  14.       ch[j]=155-ch[j];
  15.     else if ((ch[j]>='a') && (ch[j]<='z'))
  16.   ch[j]=219-ch[j];
  17.     j++;
  18.   }
  19.   cout<<"original text:";
  20.   cout<<ch<<endl;
  21.   return 0;
  22.  }