#include <iostream> #include <cctype> #include <string> using namespace std; int main(){ int a[2][26]; for(int i=0;i<26;i++){ a[0][i]=i+97; a[1][i]=0; } string s ; getline(cin,s); for(size_t i=0;i<s.size();i++){ if(isalpha(s[i])){ if(isupper(s[i])){ s[i]=tolower(s[i]) ; } int temp=(int)s[i]; for(int j=0;j<26;j++){ if( temp ==a[0][j] ){ a[1][j]++; } } } } for(int k=0;k<26;k++){ if(a[1][k]!=0){ char c=(char)a[0][k]; cout<<c<<" "<<a[1][k]<<" "; } } return 0; }
时间: 2024-10-27 09:50:07