主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
williams
2024年3月6日 11:50
字母统计 题解:
P1292
回复 0
|
赞 0
|
浏览 532
#include <stdio.h> #include <stdbool.h> #include <math.h> #include <string.h> int main(void) { char s[1000]; char s1[]={'A','B','C','D','E','F','G','H','I','J','K','L','M','N', 'O','P','Q','R','S','T','U','V','W','X','Y','Z'}; while(gets(s)!...
orderrr
2024年2月24日 17:20
字母统计 题解: 用整型数组去记录字母出现的次数
P1292
回复 0
|
赞 0
|
浏览 609
#include <bits/stdc++.h> using namespace std; /* 思想: 1、采用for循环 遍历 各个 那啥的次数 2、采用整型数组的形式 去记录字母的出现次数 */ int main() { int num[27] = {0}; string s; while (cin >> s) { for (int i = 0; i < s.size...
halo_777
2024年2月18日 20:05
字母统计 题解:
P1292
回复 0
|
赞 1
|
浏览 781
```c++ #include<bits/stdc++.h> using namespace std; int tmp[100]; int main() { char s[105]; while(cin >> s) { int len = strlen(s); for (int i = 0; i < len...
122793160
2024年2月3日 10:48
字母统计 题解:大佬们,请问为什么是75%。提示output超标
P1292
回复 1
|
赞 0
|
浏览 870
#include<bits/stdc++.h> using namespace std; int main(){ string s; int a[26]; for(getline(cin,s);s.size()!=0;getline(cin,s)){ fill(a,a+26,0); for(int i...
小王桐学
2024年1月31日 22:52
字母统计 题解:C
P1292
回复 0
|
赞 0
|
浏览 744
#include <stdio.h> void Statics(char *s) { int i,t[26] = {0}; char *p = s; while(*p != '\0') { if(*p >= 'A' && *p <= 'Z') { t[*p - 65]++; } p++; } for(i = 0; i < 26; i++) printf("%c:%d\n",'A'+i,t[i]); } int main() { char s[10000];...
fzh
2024年1月29日 14:10
字母统计 题解:用map比较简洁
P1292
回复 0
|
赞 0
|
浏览 607
#include <bits/stdc++.h> using namespace std; int main() { string str; map<char,int>mp; while(cin>>str) { for(int i=0;i<str.length();i++) if(str[i]>='A'&&str[i]<='Z') mp[str[i]]++; for(char i...
Apricityxx
2023年11月1日 16:20
字母统计 题解:
P1292
回复 0
|
赞 0
|
浏览 1.1k
using namespace std; int main(){ int ans[30]={0}; string x; while(cin>>x){ for(int i=0;i<x.size();i++){ if(x[i]<='Z'&&x[i]>='A')...
Hegel
2023年3月21日 15:12
各个大写字母数量统计
P1292
回复 0
|
赞 1
|
浏览 2.2k
#include <iostream> #include <string> using namespace std; int main() { string s; while(getline(cin,s)){ int a[26]={0}; for(int i=0;i<s.size();i++) if(s[i]>='A'&&s[i]<='Z') a[s[i]-'A']++; for(int i=0;i<26;i++) cout<<char(i+'A')&...
孤灯
2023年3月10日 16:39
数组统计
P1292
回复 0
|
赞 1
|
浏览 2.5k
#include<bits/stdc++.h> using namespace std; int main(){ int str[128]={}; string s; while(cin>>s){ int len=s.size(); for(int i=0;i<len;i++) &...
jhsf
2023年3月9日 14:26
数组计数(笨办法)
P1292
回复 0
|
赞 1
|
浏览 3.7k
#include<bits/stdc++.h> using namespace std; int main(){ string s; while(cin>>s){ string ab="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; string b; int len=s.size(); int f[1000]={0};//计数数组 for(int i=0;i<len;i++){ if(s[i]>='A'&&s[i]<='Z'){ ...
1
2
3
题目
字母统计
题解数量
26
发布题解
热门题解
1
字母统计(交大机试)
2
字母统计 题解:
3
各个大写字母数量统计
4
遍历统计
5
字母统计 题解:
6
数组计数(笨办法)
7
数组统计
8
过
9
字母统计 题解:
10
字母统计 题解:c++ 利用map来实现统计