标签:div code alpha etl 题目 git char 英文字母 upper
从天体赛回来之后,发现好多字符串的题呀,字符串都是毒瘤题目。
再PTA上面,gets() 不能用,我用的是
1 char s[110]; 2 cin.get(s,110);
导致这种用字符串string很好写的,硬生生给我弄成了毒瘤
string s; getline(cin,s);
isalnum:测试字符是否为英文或数字;
isalpha:测试字符是否为英文字母;
isdigit:测试字符是否为阿拉伯数字
islower:测试字符是否为小写字母
isspace:测试字符是否为空格
isupper:测试字符是否大写字母
标签:div code alpha etl 题目 git char 英文字母 upper
原文地址:https://www.cnblogs.com/Kaike/p/10661503.html