vrooot
vrooot
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
vrooot的博客
全部文章
(共3篇)
C++解法
c++的几个内置函数 islower(char c) 是否为小写字母isuppper(char c) 是否为大写字母isdigit(char c) 是否为数字isalpha(char c) 是否为字母isalnum(char c) 是否为字母或者数字toupper(char c) 字母小转大tolo...
小写
C++
大写
2020-03-01
21
1793
C++解法
重点应该是掩码的计算上,供参考。 #include <iostream> #include <sstream> using namespace std; enum type{ A, B, C, D, E, Err, ...
C++
掩码
IP地址
2020-03-01
1
1141
C++算法
#include <iostream> using namespace std; int main(void) { string str; int length, begin, zeros; while (cin >> str){ ...
2020-02-14
0
639