Board logo

標題: [延伸練習] 陽春加密解密練習 [打印本頁]

作者: tonyh    時間: 2021-7-3 19:50     標題: [延伸練習] 陽春加密解密練習

[attach]11886[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"加密後: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<char(int(str[i])+2);
  13.     cout<<endl<<endl;
  14.     cout<<"請輸入一字串: ";
  15.     getline(cin,str);
  16.     cout<<"解密後: "<<endl;
  17.     for(int i=0; i<str.length(); i++)
  18.         cout<<char(int(str[i])-2);
  19.     cout<<endl<<endl;
  20.     system("pause");
  21.     return 0;   
  22. }
複製代碼

作者: 王秉鈞    時間: 2021-7-3 19:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.         string str;
  8.                 cout<<"請輸入一字串"<<endl;
  9.                 getline(cin,str);
  10.             cout<<"加密後"<<endl;
  11.                 for(int i=0;i<str.length();i++)
  12.                    cout<<char(int(str[i])+2);
  13.                 cout<<endl<<endl;
  14.                 cout<<"請輸入一字串";
  15.         getline(cin,str);
  16.                 cout<<"解密後"<<endl;
  17.                 for(int i=0;i<str.length();i++)
  18.                    cout<<char(int(str[i])-2);
  19.                 cout<<endl<<endl;                           
  20.         system("pause");
  21.         return 0;
  22. }      
複製代碼

作者: 王宇崴    時間: 2021-7-3 20:02

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"加密後: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<char(int(str[i])+2);
  13.     cout<<endl<<endl;
  14.     cout<<"請輸入一字串: ";
  15.     getline(cin,str);
  16.     cout<<"解密後: "<<endl;
  17.     for(int i=0; i<str.length(); i++)
  18.         cout<<char(int(str[i])-2);
  19.     cout<<endl<<endl;
  20.     system("pause");
  21.     return 0;   
  22. }
複製代碼

作者: 林鼎傑    時間: 2021-7-3 20:22

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"加密後: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<char(int(str[i])+2);
  13.     cout<<endl<<endl;
  14.     cout<<"請輸入一字串: ";
  15.     getline(cin,str);
  16.     cout<<"解密後: "<<endl;
  17.     for(int i=0; i<str.length(); i++)
  18.         cout<<char(int(str[i])-2);
  19.     cout<<endl<<endl;
  20.     system("pause");
  21.     return 0;   
  22. }
複製代碼

作者: 余柏緯    時間: 2021-7-3 20:26

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"加密後: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<char(int(str[i])+2);
  13.     cout<<endl<<endl;
  14.     cout<<"請輸入一字串: ";
  15.     getline(cin,str);
  16.     cout<<"解密後: "<<endl;
  17.     for(int i=0; i<str.length(); i++)
  18.         cout<<char(int(str[i])-2);
  19.     cout<<endl<<endl;
  20.     system("pause");
  21.     return 0;   
  22. }
複製代碼

作者: 朱奕祐    時間: 2021-7-3 20:28

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"加密後: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<char(int(str[i])+2);
  13.     cout<<endl<<endl;
  14.     cout<<"請輸入一字串: ";
  15.     getline(cin,str);
  16.     cout<<"解密後: "<<endl;
  17.     for(int i=0; i<str.length(); i++)
  18.         cout<<char(int(str[i])-2);
  19.     cout<<endl<<endl;
  20.     system("pause");
  21.     return 0;   
  22. }
複製代碼

作者: 黃子倢    時間: 2021-7-3 20:30

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"加密後:"<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<char(int(str[i])+2);
  13.     cout<<endl<<endl;
  14.     cout<<"請輸入一字串: ";
  15.     getline(cin,str);
  16.     cout<<"解密後:"<<endl;
  17.     for(int i=0; i<str.length(); i++)
  18.         cout<<char(int(str[i])-2);
  19.     cout<<endl<<endl;
  20.     system("pause");
  21.     return 0;   
  22. }
複製代碼

作者: 呂尚霖    時間: 2021-7-3 20:30

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串:";
  9.     getline(cin,str);
  10.     cout<<"加密後:"<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<char(int(str[i])+2);
  13.     cout<<endl<<endl;
  14.     cout<<"請輸入一字串:";
  15.     getline(cin,str);
  16.     cout<<"解密後:"<<endl;
  17.     for(int i=0; i<str.length(); i++)
  18.         cout<<char(int(str[i])-2);
  19.     cout<<endl<<endl;
  20.     system("pause");
  21.     return 0;   
  22. }
複製代碼

作者: 許洧熏    時間: 2021-7-3 20:40

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一串字串: ";
  9.     getline(cin,str);
  10.     cout<<"加密後: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<char(int(str[i])+2);
  13.     cout<<endl<<endl;
  14.     cout<<"請輸入一串字串: ";
  15.     getline(cin,str);
  16.     cout<<"解密後: "<<endl;
  17.     for(int i=0; i<str.length(); i++)
  18.         cout<<char(int(str[i])-2);
  19.     cout<<endl<<endl;
  20.     system("pause");
  21.     return 0;   
  22. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2