xt5-12-4.cpp
Upload User: liubin
Upload Date: 2022-06-13
Package Size: 85k
Code Size: 0k
Category:

source in ebook

Development Platform:

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.  }