【定位平台源码】【智能应答php源码】【asp许愿墙源码】凯撒密码源码_凯撒密码源码怎么输入

2025-01-01 11:45:45 来源:unity弹幕游戏源码 分类:探索

1.C语言!凯撒凯撒凯撒算法(只加密)的密码密码定位平台源码源代码

凯撒密码源码_凯撒密码源码怎么输入

C语言!凯撒算法(只加密)的源码源码智能应答php源码源代码

       凯撒密码的原理是字母与字母之间的替换。例如个字母都向后移动K位。输入asp许愿墙源码若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;

       }

本文地址:http://j5.net.cn/html/44d890291053.html 欢迎转发