C輸入一行文字,找出其中大寫字母 小寫字母 空格 數字以及其它字元個數

2023-03-09 11:15:17 字數 863 閱讀 8788

1樓:2011的騎士

#include

#include

using namespace std;

#define max 100

void main()

cout<<"字串長度:"

2樓:在梯田捕蝶的秋海棠

#include

#include

#include

using namespace std;

namespace ;};

int main ()

else if ('a' <= *it && *it <= 'z')

else if ('a' <= *it && *it <= 'z')

else if ('0' <= *it && *it <= '9')

else

}cout << "大寫 : " << mapsymboltimes[capital_letter] << endl;

cout << "小寫 : " << mapsymboltimes[lower_case_letter] << endl;

cout << "數字 : " << mapsymboltimes[number] << endl;

cout << "空格 : " << mapsymboltimes[space] << endl;

cout << "其他 : " << mapsymboltimes[other] << endl;

return 0;}

c語言輸入字元判斷它是大寫字母或小寫字母或數字或其他

include voidmain 擴充套件資料c語言常用的判斷字元是否是字母或數字的函式isupper c c是大寫字母 islower c c是小寫字母 isalpha c 函式isupper c 或islower c 為真 isdigit c c是十進位制數字 isxdigit c c是十六進位...

c語言輸入字元,若為大寫字母則轉為小寫字母,若為小寫則轉為

int ischar char ch void turnchar if ch a ch z putchar ch 32 else putchar ch 32 用c語言程式設計,輸入一個字元,若是小寫字母,轉換為大寫輸出,若是大寫字母,轉換為小寫字母輸出 如下 include int main 在de...

c判斷輸入的字元是數字,大寫字母,小寫字母,還是其他

private int test char ch ch為輸入的一個字元 c語言輸入一個字元判斷它是大寫字母或小寫字母 或數字或其他 include voidmain 擴充套件資料c語言常用的判斷字元是否是字母或數字的函式isupper c c是大寫字母 islower c c是小寫字母 isalph...