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

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. int main()
  5.  {int j;
  6.   string ch="I will visit China next week.";
  7.   cout<<"cipher code:"<<ch<<endl;
  8.   j=0;
  9.   while (j<=ch.size())
  10.   { if ((ch[j]>='A') && (ch[j]<='Z'))
  11.       ch[j]=155-ch[j];
  12.     else if ((ch[j]>='a') && (ch[j]<='z'))
  13.   ch[j]=219-ch[j];
  14.     j++;
  15.   }
  16.   cout<<"original text:";
  17.   cout<<ch<<endl;
  18.   return 0;
  19.  }