鱼C论坛

 找回密码
 立即注册
查看: 2476|回复: 3

[技术交流] 【C/C++】Caesar

[复制链接]
发表于 2015-3-8 22:52:29 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 ~风介~ 于 2015-5-23 23:41 编辑

代码:
/*
powered by Niko!!!
bbs.fishc.com
*/ 

#include <stdio.h>

#define N 3

void createMenu();
void Encryption();
void Decryption();
void Encryption_Block(char inputfile[20],char outputfile[20]);
void Decryption_Block(char inputfile[20],char outputfile[20]);
char Caecar(char c,int n);


void createMenu()
{
        printf("1.Encrypt\n2.Decrypt\n3.Quit\n");
        printf("Input Your Choice:");
}

void Encryption()
{
        char infile[20],outfile[20];
        
        printf("===Encryption===\n");
        printf("Input Your Source File Name:");
        scanf("%s",infile);
        //printf("%s\n",infile);
        printf("Input Your Target File Name:");
        scanf("%s",outfile);
        //printf("%s\n",outfile);
        
        Encryption_Block(infile,outfile);
}

void Encryption_Block(char inputfile[20],char outputfile[20])
{
        FILE *in,*out;
        int ch;
        
        if ((in = fopen(inputfile,"rb")) != NULL)
                if ((out = fopen(outputfile,"wb")) != NULL)
                        while ((ch = fgetc(in)) != EOF)
                        {
                                ch = Caecar(ch,N);
                                fputc(ch,out);
                        }
                else
                        printf("Can't Open Output File!");
        else
                printf("Can't Open Input File!");
    
        printf("\nEncrypt is over!\n");
    fclose(in);
    fclose(out);
                
}

void Decryption()
{
        char infile[20],outfile[20];
        
        printf("===Decryption===\n");
        printf("Input Your Source File Name:");
        scanf("%s",infile);
        //printf("%s\n",infile);
        printf("Input Your Target File Name:");
        scanf("%s",outfile);
        //printf("%s\n",outfile);
        
        Decryption_Block(infile,outfile);
}

void Decryption_Block(char inputfile[20],char outputfile[20])
{
        FILE *in,*out;
        int ch;
        
        if ((in = fopen(inputfile,"rb")) != NULL)
                if ((out = fopen(outputfile,"wb")) != NULL)
                        while ((ch = fgetc(in)) != EOF)
                        {
                                ch = Caecar(ch,(26-N));
                                fputc(ch,out);
                        }
                else
                        printf("Can't Open Output File!");
        else
                printf("Can't Open Input File!");
    
        printf("\nDecrypt is over!\n");
    fclose(in);
    fclose(out);
                
}

char Caecar(char c,int n)
{
        //printf("%d",n);
        if(c>='A'&&c<='Z')
        {
                return ('A'+(c-'A'+n)%26);
        }
        else if(c>='a'&&c<='z')
        {
                return ('a'+(c-'a'+n)%26);
        }
        else
                return c;
}

int main (int argc, char *argv[])
{
        char ch;
        createMenu();
        ch = getchar();
        //putchar(ch);
        

        if ('3' != ch)
        {
                //printf("Bingo!\n");        
                if ('1' == ch)
                        Encryption();
                else
                        Decryption();
        }
        else
        {
                exit(0);
        }
        
        return 0;
}


本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-4-1 01:54:58 | 显示全部楼层
赞,介介的脚步已经扩展到C语言啦~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2015-4-1 09:16:10 | 显示全部楼层
小甲鱼 发表于 2015-4-1 01:54
赞,介介的脚步已经扩展到C语言啦~

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2015-8-20 15:25:34 | 显示全部楼层
{:1_1:}{:1_1:}{:1_1:}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 08:39

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表