UDP广播协议叫吃饭


私信TA

用户名:Mustenaka

访问量:149561

签 名:

个人博客www.mustenaka.cn

等  级
排  名 13
经  验 25381
参赛次数 8
文章发表 197
年  龄 3
在职情况 学生
学  校 Sky_box
专  业 NE

  自我简介:

欢迎光临我的博客www.mustenaka.cn,Python,C#,U3D,C/C++开发合作可以找我

解题思路:
    变成了一个学弟催我写题的情况了....
参考代码:(正确)

#include<bits/stdc++.h>
using namespace std;
int n,max_chr;
int chr[26];
char str[10005];

int main(){
	scanf("%d",&n);
	getchar();
	while(n--){
		memset(str,0,sizeof(str));
		memset(chr,0,sizeof(chr));
		max_chr=0;
		gets(str);
		for(int i=0;i<strlen(str);i++){
			chr[str[i]-'a']++;
		}
		for(int i=0;i<=26;i++){
			if(chr[max_chr]<chr[i]){
				max_chr=i;
			}
		}
		printf("%c %d\n",max_chr+'a',chr[max_chr]);
	}
}

但是我开始没有审题,直接加错误66%

这个是错误代码,各位参考就行

#include<bits/stdc++.h>
//#define hh ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
using namespace std;
const int maxn=256;
int n,chr[maxn];
int chr_max,chr_way;
string str;
int main(){
	//hh;
	scanf("%d",&n);
	getchar();
	while(n--){
		memset(chr,0,sizeof(chr));
		chr_max=0,chr_way=0;
		getline(cin,str);
		for(int i=0;i<str.length();i++){
			chr[str[i]]++;
		}
		for(int i=0;i<=maxn;i++){
			if(chr_max<chr[i]){
				chr_max=chr[i];
				chr_way=i;
			}
		}
		printf("%c %d\n",chr_way,chr_max);
	} 
	return 0;
} 

//wa 67%


 

0.0分

1 人评分

  评论区

  • «
  • »