C++程序题急!!!!!100分全给 100
#defineC152845#defineC222719voidmain()CStringEncrypt(CStringS,WORDKey)//加密函数{CStringR...
#define C1 52845
#define C2 22719
void main()
CString Encrypt(CString S, WORD Key) // 加密函数
{
CString Result,str;
int i,j;
Result=S; // 初始化结果字符串
for(i=0; i<S.GetLength(); i++) // 依次对字符串中各字符进行操作
{
Result.SetAt(i, S.GetAt(i)^(Key>>8)); // 将密钥移位后与字符异或
Key = ((BYTE)Result.GetAt(i)+Key)*C1+C2; // 产生下一个密钥
}
S=Result; // 保存结果
Result.Empty(); // 清除结果
for(i=0; i<S.GetLength(); i++) // 对加密结果进行转换
{
j=(BYTE)S.GetAt(i); // 提取字符
// 将字符转换为两个字母保存
str="12"; // 设置str长度为2
str.SetAt(0, 65+j/26);//这里将65改大点的数例如256,密文就会变乱码,效果更好,相应的,解密处要改为相同的数
str.SetAt(1, 65+j%26);
Result += str;
}
return Result;
}
// 解密函数
CString Decrypt(CString S, WORD Key)
{
CString Result,str;
int i,j;
Result.Empty(); // 清除结果
for(i=0; i < S.GetLength()/2; i++) // 将字符串两个字母一组进行处理
{
j = ((BYTE)S.GetAt(2*i)-65)*26;//相应的,解密处要改为相同的数
j += (BYTE)S.GetAt(2*i+1)-65;
str="1"; // 设置str长度为1
str.SetAt(0, j);
Result+=str; // 追加字符,还原字符串
}
S=Result; // 保存中间结果
for(i=0; i<S.GetLength(); i++) // 依次对字符串中各字符进行操作
{
Result.SetAt(i, (BYTE)S.GetAt(i)^(Key>>8)); // 将密钥移位后与字符异或
Key = ((BYTE)S.GetAt(i)+Key)*C1+C2; // 产生下一个密钥
}
return Result;
}
//实际应用
xxx()
{
CString text=_T("abc_@#%#$^$^ $");//需要加密的字符串
WORD key=1314;//key
CString jiami=Encrypt(text,key);//加密
AfxMessageBox(_T("密文:")+jiami);
CString jiemi=Decrypt(jiami,key);//解密
AfxMessageBox(_T("原文:")+jiemi);
}
D:\VC++\MyProjects\作业\作业11.cpp(6) : error C2146: syntax error : missing ';' before identifier 'CString'
D:\VC++\MyProjects\作业\作业11.cpp(6) : fatal error C1004: unexpected end of file found
执行 cl.exe 时出错.
作业11.obj - 1 error(s), 0 warning(s)
检查了好多遍都没有找到那里少了个分号
解答成功在送100分 展开
#define C2 22719
void main()
CString Encrypt(CString S, WORD Key) // 加密函数
{
CString Result,str;
int i,j;
Result=S; // 初始化结果字符串
for(i=0; i<S.GetLength(); i++) // 依次对字符串中各字符进行操作
{
Result.SetAt(i, S.GetAt(i)^(Key>>8)); // 将密钥移位后与字符异或
Key = ((BYTE)Result.GetAt(i)+Key)*C1+C2; // 产生下一个密钥
}
S=Result; // 保存结果
Result.Empty(); // 清除结果
for(i=0; i<S.GetLength(); i++) // 对加密结果进行转换
{
j=(BYTE)S.GetAt(i); // 提取字符
// 将字符转换为两个字母保存
str="12"; // 设置str长度为2
str.SetAt(0, 65+j/26);//这里将65改大点的数例如256,密文就会变乱码,效果更好,相应的,解密处要改为相同的数
str.SetAt(1, 65+j%26);
Result += str;
}
return Result;
}
// 解密函数
CString Decrypt(CString S, WORD Key)
{
CString Result,str;
int i,j;
Result.Empty(); // 清除结果
for(i=0; i < S.GetLength()/2; i++) // 将字符串两个字母一组进行处理
{
j = ((BYTE)S.GetAt(2*i)-65)*26;//相应的,解密处要改为相同的数
j += (BYTE)S.GetAt(2*i+1)-65;
str="1"; // 设置str长度为1
str.SetAt(0, j);
Result+=str; // 追加字符,还原字符串
}
S=Result; // 保存中间结果
for(i=0; i<S.GetLength(); i++) // 依次对字符串中各字符进行操作
{
Result.SetAt(i, (BYTE)S.GetAt(i)^(Key>>8)); // 将密钥移位后与字符异或
Key = ((BYTE)S.GetAt(i)+Key)*C1+C2; // 产生下一个密钥
}
return Result;
}
//实际应用
xxx()
{
CString text=_T("abc_@#%#$^$^ $");//需要加密的字符串
WORD key=1314;//key
CString jiami=Encrypt(text,key);//加密
AfxMessageBox(_T("密文:")+jiami);
CString jiemi=Decrypt(jiami,key);//解密
AfxMessageBox(_T("原文:")+jiemi);
}
D:\VC++\MyProjects\作业\作业11.cpp(6) : error C2146: syntax error : missing ';' before identifier 'CString'
D:\VC++\MyProjects\作业\作业11.cpp(6) : fatal error C1004: unexpected end of file found
执行 cl.exe 时出错.
作业11.obj - 1 error(s), 0 warning(s)
检查了好多遍都没有找到那里少了个分号
解答成功在送100分 展开
展开全部
main 函数的函数体 死哪去了嘞
追问
。。代码是复制的求大神帮忙改改应该加点什么
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
那句警告不是说少分号吧,应该是发现没有期待的文件结束,你可能会错意了吧,个人见解…
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询