c控制檯程式怎麼判斷輸入的字串型別

2021-07-01 02:06:51 字數 2307 閱讀 5577

1樓:小小木歌

小小案例提示(自己參照):

public static bool yanzheng(string str)

catch

return true;

}static void main(string args),能被轉換成int型別",str);

}else}

2樓:

輸入的都是字串

只能根據自己的需要轉換成對應的型別

可以使用convert類來進行轉換,並通過捕獲異常還判斷輸入是否正確

3樓:匿名使用者

1.public bool textvalueisint(object obj)

catch()

return boolflag;}2

使用正則:

////// 檢測是否整數型資料

////// 待檢查資料

///public static bool isinteger(string input)

else

}///

/// 是否全是正整數

/////////public static bool isinteger(string input, bool plus)

else

else}}

////// 判斷輸入是否為日期型別

////// 待檢查資料

///public static bool isdate(string s)

catch}

4樓:

可以用最強大的正則驗證啊!如下面驗證輸入的使用者名稱和密碼:

regex rx = new regex("(^[\u4e00-\u9fa5]$)|(^[a-za-z0-9]$)|(^[\u4e00-\u9fa5a-za-z0-9]$)");

match ma1 = rx.match(strusername);

match ma2 = rx.match(strpassword);

bool bo1 = ma1.success;

bool bo2 = ma2.success;

if (bo1 == true && bo2 == true)else

5樓:

哪用得著那麼麻煩,

console.writeline("變數名".gettype().tostring());

輸入的就是當前變數的型別

6樓:小貴哥

**判斷,isnumberable(string)

7樓:劉青峰

字串就是字串型別啊,還能是什麼型別。輸入的都是字串型別。。。。

c#程式設計編寫一個控制檯應用程式對使用者輸入的單個字元進行判斷,判別該字元為大寫,小寫,其他字元;

8樓:匿名使用者

類似判斷

if (convert.toint32('a') >= 65 && convert.toint32('a') <=90)

大寫字母編碼範圍內65-90、小寫字母範圍97-122其他字元 等,判斷容一下字元編碼是否在這個範圍內 就可以確定屬於哪一類了

c#如何在控制檯程式中輸入字元?

9樓:習慣了孤寂心

示例**:

class program

console.readkey(true);

}static void test()

else}}

10樓:匿名使用者

class program

console.readkey(true);

}static void test()

else}}

11樓:匿名使用者

while (true)}

12樓:匿名使用者

bool bisnumber = false;

int d;

char ch;

int i = console.read();//讀取一來個源文字

baich = convert.tochar(i);

bisnumber= int32.tryparse(ch.tostring(), d);

//判斷是du

否為zhi數dao字

13樓:劍劍

try}

catch(expetion ex)

C練習 編寫控制台應用程式,它接受使用者輸入的字元

static void main string args c 新建乙個專案,開發控制台應用程式,由鍵盤輸入乙個整數字串,統計該字串中字母的個數。main 函式裡寫 console.write 請輸入乙個字串 string str console.readline int count 0 foreac...

c程式設計題目開發控制台應用程式求大神幫忙解答

trycatch exception e 這裡數字不多我就這樣寫了 象數字多了就用迴圈 這麼簡單還是自己寫比較好,呵呵 用c 程式設計乙個控制台應用程式專案輸入正整數n,計算s 1 1 2 1 2 3 1 2 3 n 一樓正解。一樓採用的逆向思維,下面是正向的,從上面的數字可以看到規律 n個1 n ...

怎麼用c語言寫程式。實現從鍵盤輸入字元並寫入檔案

include define n 50 void main file pfile pfile fopen outfile.txt wb fwrite buf,1,strlen buf pfile fclose pfile 1 抄c語言標準庫提供了一系列檔案操作函式。檔案操作函式一般以f 單詞的形式來...