-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathceasar.h
34 lines (25 loc) · 877 Bytes
/
ceasar.h
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
#ifndef CEASAR_H_INCLUDED
#define CEASAR_H_INCLUDED
#include <iostream>
#include <string>
#include <fstream>
#include <assert.h>
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
using namespace std;
/*const int alphabetSize= 89;
char alphabet[alphabetSize]=
{' ', 'a', 'A', 'b', 'B', 'c', 'C', 'd', 'D', 'e', //10
'E', 'f', 'F', 'g', 'G', 'h', 'H', 'i', 'I', 'j', //20
'J', 'k', 'K', 'l', 'L', 'm', 'M', 'n', 'N', 'o', //30
'O', 'p', 'P', 'q', 'Q', 'r', 'R', 's', 'S', 't', //40
'T', 'u', 'U', 'v', 'V', 'w', 'W', 'x', 'X', 'y', //50
'Y', 'z', 'Z', '0', '1', '2', '3', '4', '5', '6', //60
'7', '8', '9', '!', '@', '#', '$', '%', '^', '&', //70
'*', '(', ')', '[', ']', '{', '}', ':', ';','\?', //80
'\"', '.', ':', '\'', ',','\n', '<', '>', '~'}; //89
*/
void alphabetGen(){
}
#endif // CEASAR_H_INCLUDED