首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
wei886521
2024年3月20日 01:46
字母统计 题解:
P1292
回复 0
|
赞 1
|
浏览 788
#include<iostream> using namespace std; int main(){ char A[1000]; cin >> A; int len = strlen(A); int B[26];//顺序统计每一个大写字母个数 char C[1000]; for (int i = 0; i < 26;...
小酒
2024年3月16日 17:55
字母统计 题解:
P1292
回复 0
|
赞 2
|
浏览 677
1292解题思路:利用了数组的来记录,而不是存储 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; int b[105]={0}; //A为65 gets(a); int l=strlen(a); int k=0; for(int j=0;j<l;j++) { k=a[j]%65; b[k]++; } for(int i=0;i<26;i++) { printf("%c:%d\n",6...
easymoney
2024年3月13日 12:16
字母统计 题解:
P1292
回复 0
|
赞 4
|
浏览 756
#include <stdio.h> #include <string.h> int main() { int count[26] = { 0 }; static char c[100]; gets(c); for (int i = 0;c[i] != '\0';i++) { if (c[i] >= ...
红毛舒肤佳
2024年3月9日 21:14
字母统计 题解:
P1292
回复 0
|
赞 3
|
浏览 729
#include <bits/stdc++.h> using namespace std; int main(){ string str; cin>>str; int a[26]={0}; for(int i=0;i<str.length();i++){ if(str[i]>='A'&&str[i]<='Z') &nb...
huanghu
2024年3月7日 18:49
字母统计 题解:c++ 利用map来实现统计
P1292
回复 0
|
赞 2
|
浏览 903
#include<stdio.h> #include<string> #include<iostream> #include<map> using namespace std; int main(){ string str; cin>>str; map<char,int> Mymap; int len = str.length(); for(int i = 0; i<26; i++){ ...
williams
2024年3月6日 11:50
字母统计 题解:
P1292
回复 0
|
赞 3
|
浏览 648
#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
|
赞 1
|
浏览 725
#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
|
浏览 878
```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
|
赞 1
|
浏览 965
#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
|
赞 1
|
浏览 890
#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];...
1
2
3
4
题目
字母统计
题解数量
31
发布题解
在线答疑
热门题解
1
字母统计 题解:
2
字母统计 题解:
3
字母统计 题解:
4
字母统计 题解:纯C语言 简单好理解
5
字母统计 题解:用的map
6
字母统计 题解:用数组1到26记录出现次数;
7
字母统计 题解:
8
字母统计 题解:map
9
字母统计(交大机试)
10
字母统计 题解: