主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
小王桐学
2024年3月8日 19:10
单词个数统计 题解:C
P1719
回复 0
|
赞 0
|
浏览 406
#include <stdio.h> #include <string.h> int JudgeC(char c) { if((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) return 1; else if(c == ' ') return 0; else if(c == '\n') return -1; } int main() { char c; int Zimu = 0,Word = 0,a[26] ...
seottle
2020年4月20日 15:57
不知道哪里错了,自己试了几个和样例的几个都ok啊!!
P1719
回复 2
|
赞 0
|
浏览 8.8k
#include <stdio.h> #include <string.h> #include <bits/stdc++.h> using namespace std; int main() { char str[1010]; while(gets(str)){ int hash[256] = {0}; int max; int length = strlen(str); int count = 0, kong = 0; for(int i = 0; i < length; ++i) { ...
Dale
2020年4月22日 17:58
不知道为什么一直WA,试了几个样例都没错呀...
P1719
回复 1
|
赞 0
|
浏览 7.4k
#include <stdio.h> typedef struct node{ char ch; int cnt; }count_ch; int main() { char str[1005]; gets(str); int i,j,k,l; count_ch cnt[26]; int cnt_ch = 0; int cnt_word = 1; int max_ch[26] = {0}; for(i=0;str[i]!='\0';i++) { ...
题目
单词个数统计
题解数量
3
发布题解
热门题解
1
不知道为什么一直WA,试了几个样例都没错呀...
2
单词个数统计 题解:C
3
不知道哪里错了,自己试了几个和样例的几个都ok啊!!