欢迎来到【羊毛赚app源码】【智慧旅游源码】【ae免费源码】c 源码设密码-皮皮网网站!!!

皮皮网

【羊毛赚app源码】【智慧旅游源码】【ae免费源码】c  源码设密码-皮皮网 扫描左侧二维码访问本站手机端

【羊毛赚app源码】【智慧旅游源码】【ae免费源码】c 源码设密码

2024-11-23 07:26:45 来源:{typename type="name"/} 分类:{typename type="name"/}

1.C语言!码设密码凯撒算法(只加密)的码设密码羊毛赚app源码源代码

c  源码设密码

C语言!凯撒算法(只加密)的码设密码智慧旅游源码源代码

       凯撒密码的原理是字母与字母之间的替换。例如个字母都向后移动K位。码设密码ae免费源码若K等于2,码设密码美剧源码则A用C代替,码设密码在线申请源码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;

       }