⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deciphe of transposition.cpp

📁 本人自行编写的替换密码小程序,程序不大,是作为试验的
💻 CPP
字号:
#include<stdio.h>
#include<string.h>
#include<stdlib.h>

void main()
{
	char str[]="dszquphsbqiz";
    int key,j;  
	char *deciphe;
	deciphe=(char*)malloc(strlen(str));
	printf("the possible array is :\n");    
	for(key=1;key<=10;key++)
	{
		for(j=0;j<strlen(str);j++)
			deciphe[j]=str[j]-key;
	printf("%s\nthe key is %d\n",deciphe,key);printf("\n");
		
	}
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -