2016.1 輸入一行字符串,輸出頻率和相應字母,字母無視大小寫。

//2016.1 輸入一行字符串,輸出出現頻率最高的數字和字母,字母無視大小寫。 #include<iostream> #include<stdio.h> #include<ctype.h> #include<string.h> using namespace std; int main() { int a[256]={0}; char b[20];//字符串和相應的字符頻率統計
相關文章
相關標籤/搜索