1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
//
//Position: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
//English: a b c d e f g h i j k l m n o p q r s t u v w x y z
//Caesar : d e f g h i j k l m n o p q r s t u v w x y z a b c
#include<iostream>
#include<string>
using namespace std;
int main(){
char alpha_array_low[26] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm'
,'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' };
char alpha_array_up[26] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M'
,'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };
char ceasar_array_low[26] = { 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q',
'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'a', 'b', 'c' };
char ceasar_array_up[26] = { 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q',
'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'A', 'B', 'C' };
char User_entry[1][26];
char converted_array[1][26];
cin >> User_entry[1];
for (int b = 0; b < 26; b++){
if (User_entry[1][b] == alpha_array_low[b]){
converted_array[1][b] = ceasar_array_low[b];
}
if (User_entry[1][b] == alpha_array_up[b]){
converted_array[1][b] = ceasar_array_up[b];
}
}
cout << "Your converted word is " << converted_array[1] << endl;
system("pause");
return 0;
}
|