本站提倡有节制游戏,合理安排游戏时间,注意劳逸结合。

【源码游戏】【vb 水印源码】【拳皇咆哮 源码】c 源码设密码

2024-12-26 15:47:55 来源:百科 分类:百科

1.C语言!码设密码凯撒算法(只加密)的码设密码源码游戏源代码

c  源码设密码

C语言!凯撒算法(只加密)的码设密码vb 水印源码源代码

       凯撒密码的原理是字母与字母之间的替换。例如个字母都向后移动K位。码设密码拳皇咆哮 源码若K等于2,码设密码洋葱网络源码则A用C代替,码设密码源码show文件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;

       }

相关推荐
一周热点