1樓:
private sub command1_click()dim x as string
x = inputbox("輸入")
select case asc(x)
case 47 to 59
msgbox "數字" & x
case 65 to 90
msgbox "大寫字母" & x
case 97 to 122
msgbox "小寫字母" & x
case else
msgbox "其他字元" & x
end select
print x
end sub
2樓:匿名使用者
private sub command1_click()x = inputbox("輸入")
select case x
case "a" to "z"
msgbox "大寫字母"
case "a" to "z"
msgbox "小寫字母"
case 1 to 32767
msgbox "數字"
case else
msgbox "其它字元"
end select
end sub
3樓:匿名使用者
isnumeric函式
剛學vb 在文字框中輸入一個字元,判斷是字母還是數字字元 或者其他字元 我寫的有問題 應該怎麼改
4樓:匿名使用者
s是變數,不該打引號。
下面是用選擇語句來處理,可能比較清晰點。
private sub command1_click()dim s as string
s = text1
if len(s) = 1 then
select case s
case "a" to "z", "a" to "z"
msgbox "字母"
case "0" to "9"
msgbox "數字"
case else
msgbox "其它"
end select
else
msgbox "請只輸入一個字"
end if
end sub
5樓:風雪劍無痕
private sub command1_click()dim s as string
s = text1.text
if len(s) = 1 then
if text1.text like "[a-z]" or text1.text like "[a-z]" then
text2.text = "字母"
elseif isnumeric(text1.text) then text2.text = "數字"
else
text2.text = "其它"
end if
else
msgbox "請只輸入一個字元"
end if
end sub
vb中判斷n是大寫字母、小寫字母、數字字元還是其他字元。
6樓:匿名使用者
#inlude
using namespace std;
void judgecharacter(char input)if(cinput >='a' && cinput <= 'z')if(cinput >= '0' && cinput <= '9')msgbox << "提示錯屬誤" << endl;
return ;}
7樓:匿名使用者
用ascii值判斷。具體的ascii值請查ascii值表,課本上有的
vb寫程式輸入一個字元,判斷是數字字元?大小字母?其他字元?
8樓:匿名使用者
if asc(text1.text) < "58" and asc(text1.text) > "47" then
msgbox "數字"
elseif asc(text1.text) < "91" and asc(text1.text) > "64" then
msgbox "大寫字母
"elseif asc(text1.text) < "123" and asc(text1.text) > "96" then
msgbox "小寫字母"
elseif asc(text1.text) < 0 thenmsgbox "漢字或其他版字元
權"else
msgbox "其他字元"
end if
9樓:岔路程式緣
private sub form_click()dim a as string
a=inputbox(「
抄一個字元」
襲,「輸入bai」,「0」)
if a>=「0」 and a<=「9」 print a;「是du一個數字zhi」
elseif a>=「a」 and a<=「z」 print a;「是一個小寫字母」
elseif a>=「a」 and a<=「z」 print a;「是一個大dao寫字母」
elseif print a;「是一個其他字元」
end sub
鞋子的型號是怎麼顯示的?數字還是字母
代表鞋碼 中國人的鞋碼都是40多的數字,有但些人是看uk碼的。代表鞋子型號 的是art n。o。一般是6個數字。通常都印在一行,很好辨認。代表出廠的廠家 序號是以fty no ape開頭的。鑑別方法 阿迪達斯鞋標鑑別方法一 如果us下面的碼數是個位數的 或者個位數的1 2 那麼us的u就和那個數字同...
高數中怎麼判斷函式是有界還是無界的
函式有界性的充分必要條件是必須既有上界,又有下界。因為這是有界函式的定義。也就是說規定了這樣的函式才是有界函式。解題過程如下 設函式f x 在數集x有定義 試證 函式f x 在x上有界的充分必要條件是它在x上既有上界又有下界。證明 充分性 若f x 上界 m 下界n 則 f x max 一般來說,連...
組合語言怎麼實現判斷數是正數還是負數
用補碼進行判斷。比如 1 0xff 2 0xfe 等等。對於8位機而言,1 127為正數 0為0,129 255為負數 127 1 還有一個 128 一共127 1 127 1 256個數。前提是你確定是有符號數 如果是無符號數,那麼就是從0到255。 王愛飛 首先,你要確定這個數是用什麼型別的資料...