【燕窝硕源码真假】【chia 源码分析】【挖坑大师源码】c 源码设密码

时间:2024-11-06 15:27:29 来源:天和跑胡子源码网 编辑:高盛源码搭建教程

1.C语言!码设密码凯撒算法(只加密)的码设密码燕窝硕源码真假源代码

c  源码设密码

C语言!凯撒算法(只加密)的码设密码chia 源码分析源代码

       凯撒密码的原理是字母与字母之间的替换。例如个字母都向后移动K位。码设密码挖坑大师源码若K等于2,码设密码threadlocal实例源码则A用C代替,码设密码mybatis源码设计B用D代替,码设密码以此类推。码设密码

#include <stdio.h>

       #include <conio.h>

       int main(){

        int key;

        char mingma,码设密码mima;

        printf("\nPlease input the character:");

        scanf("%c",&mingma); //输入明码

        printf("\nPlease input the key:");

        scanf("%d",&key); //输入秘钥

        if((mingma>='A')&&(mingma<='Z'))

         mima='A'+(mingma-'A'+key)%; //大写字母移位

        else if((mingma>='a')&&(mingma<='z'))

         mima='a'+(mingma-'a'+key)%; //小写字母移位

        printf("\n The output is:%c",mima); //输出密码

        printf("\nFinished!\n");

        getch();

        return 0;

       }

copyright © 2016 powered by 皮皮网   sitemap