根据 a=b^c 相互关系。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int i,j,len,len_one;
char one[10000],two[10000];//one[]为密钥,two[]为明文
printf("请输入明文:");
gets(two);
printf("请输入密钥:");
gets(one);
len_one=strlen(one);
len=strlen(two);
f...