Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
50329 | jiabokai | 练74.1 垂直直方图 | C++ | 无测评数据 | 0 MS | 0 KB | 584 | 2024-08-19 18:31:16 |
#include<bits/stdc++.h> using namespace std; string s[4]; int words[26]; int main(){ for(int i=0;i<4;i++){ getline(cin,s[i]); } for(int i=0;i<4;i++){ for(int j=0;j<s[i].size();j++){ if(s[i][j]>='A'&&s[i][j]<='Z') words[s[i][j]-'A']++; } } int max=0; for(int i=0;i<26;i++){ if(words[i]>max){ max=words[i]; } } for(int i=0;i<max;i++){ for(int j=0;j<26;j++){ if(words[j]>=(max-i)){ cout<<"* "; }else cout<<" "; } cout<<endl; } for(char l='A';l<='Z';l++){ cout<<l<<" "; } return 0; }