主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
JaredWang
2024年9月11日 16:19
字母统计 题解:
P1292
回复 0
|
赞 0
|
浏览 571
#include<bits/stdc++.h> using namespace std; int record(char m,char *a,int n) { int count=0; for(int i=0;i<n;i++) { if(a[i]==m) count++; } retur...
ccccccyes
2024年8月28日 09:35
字母统计 题解:
P1292
回复 0
|
赞 0
|
浏览 1.1k
#include <iostream> using namespace std; int arr[30] = {0}; int main(){ string str; int index; cin>>str; for(int i = 0; i<=str.size()-1; i++){ if(str[i]>='A'&&str[i]<='Z'){ index = str[i] - 'A'; //从arr[0]开始 arr[index]++; }...
可可爱爱草莓派
2024年8月25日 18:05
字母统计 题解:用的map
P1292
回复 0
|
赞 0
|
浏览 330
#include<bits/stdc++.h> using namespace std; int main(){ string s; while (getline(cin,s)){ map<char,int> m; int len = s.size(); char c = 0; &n...
我与代码的故事
2024年4月28日 00:11
字母统计 题解:
P1292
回复 0
|
赞 1
|
浏览 717
#include <bits/stdc++.h> using namespace std; string str; int cnt[27]; int main() { while(cin >> str) { memset(cnt, 0, sizeof cnt); for(int i = 0; i < str.size(); i ++) if(str[i] >= 'A' && str[i] <= 'Z') cnt[str[i] - 'A'] ++; for(...
1576684866
2024年3月21日 16:17
字母统计 题解:
P1292
回复 0
|
赞 0
|
浏览 830
#include <cstdio> using namespace std; #include <string.h> #include <iostream> #include <map> #include <stdlib.h> int main() { map<char, int>M; for (int i = 0; i < 26; i++) { &nbs...
wei886521
2024年3月20日 01:46
字母统计 题解:
P1292
回复 0
|
赞 0
|
浏览 649
#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
|
赞 0
|
浏览 572
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
|
赞 0
|
浏览 582
#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
|
赞 0
|
浏览 598
#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
|
赞 0
|
浏览 647
#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++){ ...
1
2
3
题目
字母统计
题解数量
26
发布题解
热门题解
1
字母统计(交大机试)
2
字母统计 题解:
3
各个大写字母数量统计
4
遍历统计
5
字母统计 题解:
6
数组计数(笨办法)
7
数组统计
8
过
9
字母统计 题解:
10
字母统计 题解:c++ 利用map来实现统计