主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
小酒
2024年3月15日 15:35
字符串处理 - 统计元音个数 题解:
P1540
回复 0
|
赞 0
|
浏览 517
1540解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; gets(a); int ca=0,ce=0,ci=0,co=0,cu=0; int l=strlen(a); for(int i=0;i<l;i++) { if(a[i]=='a') ca++; if(a[i]=='e') ce++; if(a[i]=='i') ci...
小王桐学
2024年3月6日 23:15
字符串处理 - 统计元音个数 题解:C
P1540
回复 0
|
赞 0
|
浏览 352
#include <stdio.h> int main() { char s[101]; while(gets(s) != NULL) { int a = 0,e = 0,i = 0,o = 0,u = 0; char *p = s; while(*p != '\0') { if(*p == 'a' || *p == 'A') a++; else if(*p == 'e' || *p == 'E') e++; else if(*p == 'i' || *p == 'I') i...
莫小七
2020年2月24日 13:23
1540字符串处理统计元音个数(暴力遍历)
P1540
回复 0
|
赞 0
|
浏览 9.4k
#include<iostream> #include<cstring> #include<string> using namespace std; int main() { string s; int a[5] = { 0 }; getline(cin,s); for (int i = 0;i < s.size();i++) { if (s[i] == 'a') { a[0]++; } else if (s[i] == 'e') { a[1]++; } else ...
题目
字符串处理 - 统计元音个数
题解数量
3
发布题解
热门题解
1
1540字符串处理统计元音个数(暴力遍历)
2
字符串处理 - 统计元音个数 题解:
3
字符串处理 - 统计元音个数 题解:C