-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaesar.c
53 lines (44 loc) · 1.22 KB
/
caesar.c
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
51
52
53
#include <cs50.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
int main(int argc ,string argv[])
{
if (argc != 2 || argc == 1)
{
printf ("Usage: ./caesar key\n");
return 1;
}
int k = atoi(argv[1]);
printf("key: %i, %i", k, argc);
if (k == 0)
{
printf ("Usage: ./caesar key\n");
}
else
{
string plain = get_string ("plaintext: ");
string cipher = plain;
for (int i = 0; i <=(strlen(plain)); i++)
{
if (isalpha(plain[i]))
{
if (isupper(plain[i]) && plain[i] >= 'A' && plain[i] <= 'Z')
{
cipher[i] = ((plain [i] + k) - 65);
cipher[i] = cipher[i] % 26;
cipher[i] = cipher [i] + 65;
}
if (islower(plain[i]) && plain[i] >= 'a' && plain[i] <= 'z')
{
cipher[i] = ((plain [i] + k) - 97);
cipher[i] = cipher[i] % 26;
cipher[i] = cipher [i] + 97;
}
}
}
printf("ciphertext: ");
printf("%s\n", cipher);
}
}