维吉尼亚的C语言程序
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
#include
#include
#include
void Encry()
{
char key[100];
char ch,temp;
int L,i=0,j=0;int t;
if(getchar()=='\n')
temp=' ';
printf("请输入密钥: ");
gets(key);
L=strlen(key);
for(t=0;t { if(key[j%L]>='A'&&key[j%L]<='Z') { key[t]=key[j%L]+32; } j++; } printf("输入明文: "); while((ch=getchar())!='\n') { if(ch==' ') { i++; continue; } if(ch>='a'&&ch<='z') { printf("%c",(ch-'a'+key[j%L]-'a')%26+'A'); j++; } if(ch>='A'&&ch<='Z') { printf("%c",(ch-'A'+key[j%L]-'a')%26+'A'); j++; } if(j%L==0) printf(" "); i++; } putchar(ch); } void Decry() { char key[100]; char ch,temp; int L,i=0,j=0;int t; if(getchar()=='\n') temp=' '; printf("请输入密钥: "); gets(key); L=strlen(key); for(t=0;t { if(key[j%L]>='A'&&key[j%L]<='Z') {key[t]=key[j%L]+32;} j++; } printf("输入密文: "); while((ch=getchar())!='\n') { if(ch==' ') { i++; continue; } if(ch>='A'&&ch<='Z') { printf("%c",(ch+26-'A'-key[j%L]+'a')%26+'a'); j++; } if(j%L==0) printf(" "); i++; } putchar(ch); } int Exit() { exit(0); } int main() { char ch; for(;;) { printf("请输入你的操作(e/E加密;d/D解密;q/Q退出):"); ch=getchar(); if(ch=='e'||ch=='E') Encry(); else if(ch=='d'||ch=='D') Decry(); else if(ch=='q'||ch=='Q') Exit(); else { printf("输入命令错误!"); putchar(getchar()); continue; } } return 0; }