• 大小: 3.11KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++实战源码-简单的字符加密(入门级实例037).zip

资源截图

代码片段和文件信息

// Encrypt.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include 
#include

int main()
{
int result = 1;
int i;
int count = 0;
char Text[128] = {‘\0‘}; //定义一个明文字符数组 
char cryptograph[128] = {‘\0‘}; //定义一个密文字符数组 
while (1)
{
if (result == 1) //如果是加密明文 
{
printf(“请输入要加密的明文:\n“); //输出字符串 
scanf(“%s“ &Text); //获取输入的明文 
count = strlen(Text);
for(i=0; i {
cryptograph[i] = Text[i] + i + 5; //设置加密字符 
}
cryptograph[i] = ‘\0‘; //设置字符串结束标记 
//输出密文信息 
printf(“加密后的密文是:%s\n“cryptograph);
}
else if(result == 2) //如果是解密字符串 
{
count = strlen(Text);
for(i=0; i {
Text[i] = cryptograph[i] - i - 5; //设置解密字符 
}
Text[i] = ‘\0‘; //设置字符串结束标记 
//输出明文信息 
printf(“解密后的明文是:%s\n“Text);
}
else if(result == 3) //如果是退出系统 
{
break;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1451  2010-07-23 18:51  Encrypt\Encrypt.cpp
     文件        4548  2010-07-23 17:04  Encrypt\Encrypt.dsp
     文件         539  2010-07-23 17:04  Encrypt\Encrypt.dsw
     文件         294  2010-07-23 17:04  Encrypt\StdAfx.cpp
     文件         769  2010-07-23 17:04  Encrypt\StdAfx.h

评论

共有 条评论