博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codeforces水题100道 第二十二题 Codeforces Beta Round #89 (Div. 2) A. String Task (strings)
阅读量:5226 次
发布时间:2019-06-14

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

题目链接:http://www.codeforces.com/problemset/problem/118/A

题意:字符串转换……
C++代码:

#include 
#include
using namespace std;string s;bool _in(char c, string s){ for (int i =0 ; i < s.length(); i ++) if (c == s[i]) return true; return false;}int main(){ cin >> s; int len = s.length(); for (int i = 0; i < len; i ++) { char c = s[i]; if (c >= 'A' && c <= 'Z') c += 32; if (_in(c, "aeiouy")) ; else cout << "." << c; } return 0;}
C++

 

转载于:https://www.cnblogs.com/moonlightpoet/p/5689423.html

你可能感兴趣的文章
RQNOJ八月赛
查看>>
前端各种mate积累
查看>>
jQuery 1.7 发布了
查看>>
Python(软件目录结构规范)
查看>>
Windows多线程入门のCreateThread与_beginthreadex本质区别(转)
查看>>
Nginx配置文件(nginx.conf)配置详解1
查看>>
linux php编译安装
查看>>
name phone email正则表达式
查看>>
721. Accounts Merge
查看>>
OpenCv-Python 图像处理基本操作
查看>>
「Unity」委托 将方法作为参数传递
查看>>
重置GNOME-TERMINAL
查看>>
redis哨兵集群、docker入门
查看>>
正则表达式2
查看>>
Unity3D_(插件)小地图自刷新制作Minimap小地图
查看>>
为什么分布式一定要有Redis?
查看>>
hihoCoder 1233 : Boxes(盒子)
查看>>
团队的绩效评估计划
查看>>
oracle中anyData数据类型的使用实例
查看>>
C++对vector里面的元素排序及取任意重叠区间
查看>>