码迷,mamicode.com
首页 > 其他好文 > 详细

[字符串]

时间:2019-04-06 13:59:32      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:div   code   alpha   etl   题目   git   char   英文字母   upper   

从天体赛回来之后,发现好多字符串的题呀,字符串都是毒瘤题目。

再PTA上面,gets() 不能用,我用的是 

1 char s[110];
2 cin.get(s,110);

导致这种用字符串string很好写的,硬生生给我弄成了毒瘤

string s;
getline(cin,s);

 

#include<ctype.h>

isalnum:测试字符是否为英文或数字;
isalpha:测试字符是否为英文字母;
isdigit:测试字符是否为阿拉伯数字
islower:测试字符是否为小写字母
isspace:测试字符是否为空格
isupper:测试字符是否大写字母

 

[字符串]

标签:div   code   alpha   etl   题目   git   char   英文字母   upper   

原文地址:https://www.cnblogs.com/Kaike/p/10661503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!