編寫函式,從鍵盤輸入字串,分別統計其中的大寫字母,小寫字母以及數字的個數

2022-03-18 13:05:04 字數 2208 閱讀 1188

1樓:匿名使用者

看你用什麼程式語言....vb的把字元轉換成ascii碼會變成數字,哪些數字是小寫哪些是大寫就可以分開了

詳細一點的我忘了

2樓:匿名使用者

#include

#include

using namespace std;

int main()

cout << " the number of digit is: " << num << endl;

cout << " the number of lower character is: " << low << endl;

cout << " the number of upper character is: " << up << endl;

return 0;

}我的編譯環境是vc++6.0,能夠得到正確結果。用c++編的。

3樓:

#include

void checksum(char * s);

int main()

void checksum(char * s)printf("upper %d. lower %d.\n",na,na);}

c語言程式設計:從鍵盤輸入一個字串。分別統計其中大寫字母、小寫字母及其它字元的個數,並輸出。

4樓:匿名使用者

#include

#include

main()

printf("大寫%d個,小寫%d個,其他的%d個\n",dx,xx,qt);}

5樓:匿名使用者

給你個思路,用asc||碼先區分大小寫,分別計算個數後輸出

6樓:匿名使用者

這個網上很多

了。#include

void main()

printf("zimu:%d\nspace:%d\nshuzi:%d\nqita:%d\n"z,k,s,q);}

c語言程式設計 從鍵盤輸入一個字串,分別統計其中大寫字母、小寫字母及其其他字元的個數,並輸出。

7樓:全能知識小店

#include

void main()}

8樓:

#include

void main()

printf("大寫字母的個數為:%d 小寫字母的個數為:%d 空格個數為:%d \n",countd,countx,countk);

printf("數字個數為:%d 其他字元個數為%d\n",counts,countq);}

9樓:匿名使用者

這個網上很多了。

#include

void main()

printf("zimu:%d\nspace:%d\nshuzi:%d\nqita:%d\n"z,k,s,q);}

輸入一個字串,將其中的大寫字母改為小寫字母,小寫字母改為大寫字母,然後輸出!

10樓:百度使用者

以下程式通過測試. 有問題請追問!#include void main()

else if(*p>='a'&&*p<='z')p++;

}printf("%s\n",s);

}附圖:

編寫一個程式,從鍵盤上輸入一串字串,分別統計字串中大寫字母,小寫字母,數字的個數

c語言題:輸入一個字串,統計其中大寫字母,小寫字母,數字,和其他字元的個數

編寫程式,從鍵盤輸入一行字元,一回車鍵為結束,分別統計其中的大寫字母,小寫字母,空格,數字和其他字元的個

11樓:匿名使用者

#include "stdio.h"

int fun(char s)

return n;

}main()

友友參考下吧,我不想再改專了,畢竟友友也需要屬自己思考下的……

12樓:匿名使用者

#include "stdio.h"

main()

printf("%d,%d,%d,%d,%d",sum1,sum2,space,number,other);}

C語言 用字元陣列從鍵盤輸入字串,刪除字串中所有

1 遍歷字串 2 對每個字元 判斷,如果不是字母,則刪除。刪除可以通過後續字元前專移,覆蓋要刪 屬除字元的方式實現。如下 int main s j 0 printf s n s include include include int main str2 j 0 printf s str2 getch...

編寫一下程式從鍵盤上輸入字串,統計字串中英文字母的個數及數字的個數

不用那麼複雜,漢字倆位元組,英文一個位元組,計算下關係就可以了 public class test public class test else if value 65 value 90 value 97 value 122 else system.out.println 數字個數 num 字母個數...

從鍵盤輸入字串,按字母 數字和其它字元分類統計個數

system.out.println 請輸入字串 scanners newscanner system.in string string s.nextline system.out.println string intx 0,y 0,c 0,b 0,sum string.length for int...