- #include <bits/stdc++.h>
- //#include <iostream>
- //#include <string>
- using namespace std;
- string caesarCipher(string s, int k) {
- string result = ""; // 儲存加密後的字串
- k %= 26; // 將位移值限制在 0~25
- for (char c : s) {
- if (isalpha(c)) { // 如果是字母
- char base = islower(c) ? 'a' : 'A'; // 判斷是小寫還是大寫
- // 計算新字元,按位移加密
- char encryptedChar = base + (c - base + k) % 26;
- result += encryptedChar;
- } else {
- // 非字母字元保持不變
- result += c;
- }
- }
- return result;
- }
- int main() {
- // 輸入字串 S
- string S;
- getline(cin, S); // 使用 getline 讀取含空白的整行字串
- // 輸入位移數 k
- int k;
- cin >> k;
- // 加密字串並輸出
- string encrypted = caesarCipher(S, k);
- cout << encrypted << endl; // 確保有輸出結果
- return 0;
- }
- /*
- 輸入範例1
- Hello,World!
- 3
- 輸出範例1 Khoor,Zruog!
- 輸入範例2
- This is 'plaintext'.
- 7
- 輸出範例2 Aopz pz 'wshpualea'.
- */
複製代碼 |