Xcode寫C++(程序練習7:統計各字符的個數)

輸入一行字符,分別統計出其中英文字母、空格、數字和其餘字符的個數 #include <iostream> void Count() { int alpha = 0;//字母個數 int blank = 0;//空格個數 int digit = 0;//數字個數 int other = 0;//其餘字符個數 char ch;//獲取鍵盤當前的輸入 wh
相關文章
相關標籤/搜索