(c#)输入一个字符串,然后进行加密加密规则每个字符串加4,例如china加密后glmre

[复制链接]
查看11 | 回复1 | 2010-3-23 16:31:33 | 显示全部楼层 |阅读模式
在主类上写下下面代码就行了string a = Console.ReadLine();for(i=0;i<a.length;i++){
a+=4
string str +=a;}response.write(str);
回复

使用道具 举报

千问 | 2010-3-23 16:31:33 | 显示全部楼层
public static string EnCode(string str)
{
char[] chs = str.ToCharArray();
int count = chs.Length;
for (int i = 0; i <= count - 1; i++)
{
chs += (char)4;
}
return new string(chs);
}
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行