如何在C中隨機產生大小寫字母和數字的混合?求大神解答

2021-03-04 00:47:16 字數 3316 閱讀 5649

1樓:

var code=getcode(4);//隨機獲取4個數private string getcode(int num)//獲取隨機數

return returncode;}

c#語言,現在要生成10位隨機碼,包含數字,大小寫字母,如何生成,謝謝各位大神

2樓:匿名使用者

using system;

using system.collections.generic;

using system.linq;

using system.text;

namespace randomstringdemoconsole.writeline(str);

console.read();}}

}可以嗎?有疑問可以追問哦。

c# 隨機生成8位的純數字 和 隨即生成10位的數字加字母 求方法

3樓:匿名使用者

以前寫過乙個方法生成隨機數的: private string randomnum() return randomcontent; }

c#隨機產生4個字母並驗證不區分大小寫,求大神**啊!急!

4樓:丘位元灬憶殤

random r = new random();

char ch = (char)r.next('a', 'z');

求乙個c#函式,隨機生成16位字串(數字+小寫字母)的。

5樓:匿名使用者

public string createrandcdkeys(int x)

;random rand = new random();

int temp = -1;

string cdkey = string.empty;

for (int i = 0; i < 16; i++)int randindex = rand.next(0, 35);

temp = randindex;

cdkey += codeserial[randindex];

}return cdkey;

for (int i = 0; i < 500; i++)親測 20次 沒有出現一次重複

6樓:匿名使用者

public string rand()

return result ;}

用.*** 做c#, 如何讓乙個文字框中產生隨機的大小寫字母,只能產生隨機的大小寫字母 50

7樓:李君軍

//放個文字框子名字是textbox1

//放個按鈕,在按鈕單擊事件裡寫下面的**//你可以定内義你想隨機出現容的任何字元在陣列裡//這裡只在abcabc這6個字母做隨機

string s = new string;

int wordlength = 4;//這個是隨機字母顯示的個數system.random r= new random();

string strword = string.empty;

for(int i=0;i

c#.***中產生隨機大小寫字母

8樓:匿名使用者

//隨機類du

random r = new random();

//產生乙個ascll碼,並將

zhiascll轉成字元

//引數65代表dao大寫字母a在ascll的開始位置,//引數112代表小寫字z在ascll的位回置//意思就是

答產生乙個65到112的數值,然後把這個值轉為ascll碼//那為什麼會是字母呢?,因為在ascll碼中65到112就是大小寫字母

char ch=(char)r.next(65,112);

//彈出對話方塊

messagebox.show(""+ch);

寫好了,給分

9樓:

new random().next(65,112);

c#中隨機生成一串字母+數字的字串,用做表單編號怎麼生成啊?

10樓:匿名使用者

給個我寫的用於生成**驗證碼碼的,你可

以直接拿過去用,有不懂的可以再問我。

string createrandomcode(int codecount)

int t = random.next(35);

if( temp == t)

temp = t;

randomcode += allchararray[temp];

}return randomcode;}

11樓:匿名使用者

直接用當前時間精確到微妙也可以啊:

datetime.now.tostring("yyyymmddhhmmssfff");

前面再加段隨機字母也行。

用作唯一識別符號的計算機和網路:

guid.newguid().tostring();

這個就比較長了而且沒規律

12樓:匿名使用者

guid.newguid().tostring();

guid 是乙個 128 位整數(16 位元組),可用於所有需要唯一識別符號的計算機和網路。此識別符號重複的可能性非常小

13樓:匿名使用者

你不怕隨機到相同的?還是有點規律的好

c# 打字遊戲 大小寫字母,數字能一起出現

14樓:匿名使用者

private void timer1_tick(object sender, eventargs e)

;label label = new label();

random ran = new random();

string labeltext = labeltexts[ran.next(labeltexts.count-1)].

tostring();//產生隨機數,並取出labeltexts陣列中對應索引的值

label.text = labeltext;

label.left = ran.next(this.width);//隨機水平位置

this.controls.add(label);

foreach (control c in this.controls)}}

C語言程式設計求助!大小寫字母互換 字母順序左右互換

include stdafx.h vc 6.0加上這一行.include stdio.h include string.h void main void char a 200 i,ln printf please enter a line of letters.n gets a ln strlen ...

C打字遊戲大小寫字母,數字能一起出現

private void timer1 tick object sender,eventargs e label label new label random ran new random string labeltext labeltexts ran.next labeltexts.count 1...

在電腦上按哪個鍵切換大小寫字母,鍵盤上哪個鍵是大小寫字母切換的?

一般是 capslock 這個鍵 一,中文輸入法狀態下,一般 按 capslock 鍵,就直接切換到 字母的大寫方式。再按一下回到中文輸入法。二,英文狀態下,按capslock鍵一次,就直接切換到 字母的大寫方式。再按一下回到小狀態。三,英文狀態下,要臨時改變字母的大小寫,可採用 按住 shift鍵...