博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj1566
阅读量:6407 次
发布时间:2019-06-23

本文共 1156 字,大约阅读时间需要 3 分钟。

简单题

View Code
//zoj1713#include 
#include
using namespace std;string st;bool syll(char a){ if (a == 'a' || a == 'e' || a == 'i' || a == 'o' || a == 'u' || a == 'y') return true; return false;}bool judge(string a, int num){ int i, l = a.length(), temp = 0; if (syll(a[0])) temp++; for (i = 1; i < l; i++) if (syll(a[i]) && !syll(a[i-1])) temp++; if (temp == num) return true; return false;}void work(){ string st1, st2, st3; int t; t = st.find("/"); st1 = st.substr(0, t); st.erase(0, t + 1); t = st.find("/"); st2 = st.substr(0, t); st.erase(0, t + 1); st3 = st; if (!judge(st1, 5)) { cout << "1" << endl; return; } if (!judge(st2, 7)) { cout << "2" << endl; return; } if (!judge(st3, 5)) { cout << "3" << endl; return; } cout << "Y" << endl;}int main(){ //freopen("t.txt", "r", stdin); while (getline(cin, st) && st != "e/o/i") work(); return 0;}

 

转载于:https://www.cnblogs.com/rainydays/archive/2013/03/26/2983218.html

你可能感兴趣的文章
Git 仓库大扫除
查看>>
设计模式-单例模式
查看>>
es6基础0x014:WeakMap
查看>>
九种 “姿势” 让你彻底解决跨域问题
查看>>
php中mysqli 处理查询结果集总结
查看>>
你不知道的JavaScript运算符
查看>>
小程序开发注意事项
查看>>
ECMAScript7规范中的instanceof操作符
查看>>
Hadoop HDFS原理分析
查看>>
【webpack4】基本配置和入门api
查看>>
Mac使用ssh公钥登录Linux
查看>>
【366天】跃迁之路——程序员高效学习方法论探索系列(实验阶段124-2018.02.06)...
查看>>
POJ3070-Fibonacci(矩阵快速幂)
查看>>
[vue插件]基于vue2.x的电商图片放大镜插件
查看>>
标准的组件结构
查看>>
vue——一个页面实现音乐播放器
查看>>
SVG 扬帆起航
查看>>
NET Core-学习笔记(二)
查看>>
职业生涯上的点点滴滴
查看>>
Linux下添加新硬盘,分区及挂载
查看>>