哈哈,最近刚刚开始学习C#,感觉挺好。
下面一段代码是用C#实现的,主要完成对字符串的加密和解密操作。
//源代码
//对一段字符串实现加密解密操作
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace study_test4
{
class Program
{
static void Main(string[] args)
{
string s; //定义存储输入字符串变量
int L; //定义存储字符串长度的变量
/*对输入的字符串完成加密*/
Console.WriteLine("please input a string:");
s = Console.ReadLine(); //输入字符串
L