用vb編寫函式輸入一串字元然後將其顛倒顯

2021-03-07 02:45:02 字數 1015 閱讀 3564

1樓:

private sub ***mand1_click()dim a as string

a = inputbox("請輸入一串字元", "輸入")for i = len(a) to 1 step -1print mid(a, i, 1);

next

end sub

2樓:匿名使用者

同意strreverse

strreverse函式

描述返回一個字串,其中一個指定子字串的字元順序是反向的。

語法strreverse(string1)引數string1是一個字串,它的字元順序要被反向。如果string1是一個長度為零的字串(""),則返回一個長度為零的字串。如果string1為null,則產生一個錯誤。

3樓:匿名使用者

請問:如何用left和right函式的巢狀使用來實現本題呢?

謝謝啦。

4樓:吳剛剛剛剛

function strre(byval strtext as string) as string

strre = strreverse(strtext)end function

sub main()

dim strre as string

console.writeline("請輸入字串:")strre = console.

readline()strre = strreverse(strre)console.writeline("逆序後的字串:")console.

writeline(strre)console.readline()

end sub

5樓:匿名使用者

用strreverse函式可以使字元反向!

str=strreverse(string1)

6樓:匿名使用者

是啊 我才想起來 strreverse(string1) 受教了

編寫程式 從鍵盤輸入一串字串,統計字串中大寫字母和小寫

include void fun char ch count2 26 while ch i for i 0 i 26 i for i 0 i 26 i void main c語言程式設計 從鍵盤輸入一個字串。分別統計其中大寫字母 小寫字母及其它字元的個數,並輸出。include include ma...

輸入一串字元,直到輸入星號為止,統計(輸出)其中的

樓上的沒有判斷輸入的字串中有否含有其他的字元,如果有的話你的程式就出錯了。如下 scanner in new scanner system.in int ilettercount 0 字母計數 int inumcount 0 數字計數 int isigncount 0 其他符號計數 string s...

用c語言編寫程式從鍵盤上輸入字串輸

include include define longth 10 定義字串最大長度void main 我以前寫的,可以執行,希望有幫助 1.int strcmp const char str1,const char str2 功能 比較字串str1 and str2,返回值如下 返回值 0 str1...