怎么在C#里定义一个string变量接收以月份的开头大学字母+让系统自动生成当前天数的值+随机的4个数字的值?
2个回答
2012-05-25
展开全部
这个要每个月都给它一个字母用switch
string m="";
//下面是判断月份加前缀
switch(datetime.now.tostring("MM")
{
case "01":m="J";break;
case "02":m="F";break;
...
}
string date=datetime.now.tostring("dd");//这是获取当前天数的值,如今天是1号就显示01
Random r = new Random();
int i=r.next(0,9999);//0-9999的随机数
string s=i.tostring("0000");
string str=m+date+s;//str就是你最终要得到的sting变量了
string m="";
//下面是判断月份加前缀
switch(datetime.now.tostring("MM")
{
case "01":m="J";break;
case "02":m="F";break;
...
}
string date=datetime.now.tostring("dd");//这是获取当前天数的值,如今天是1号就显示01
Random r = new Random();
int i=r.next(0,9999);//0-9999的随机数
string s=i.tostring("0000");
string str=m+date+s;//str就是你最终要得到的sting变量了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询