Fuyuyu_Yuzu_Suki
Fuyuyu_Yuzu_Suki
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Fuyuyu_Yuzu_Suki的博客
TA的专栏
78篇文章
0人订阅
华为机试刷题记录
78篇文章
424人学习
全部文章
(共102篇)
题解 | #记负均正II#
#include <ios> #include <iostream> using namespace std; #include <iomanip> int main() { double res = 0.0; int cntP = 0; ...
2023-03-29
0
261
题解 | #字符逆序#
#include <iostream> using namespace std; #include <string> int main() { string str; getline(cin,str); for(int i = str.size()-1...
2023-03-29
0
242
题解 | #求解立方根#
#include <iostream> using namespace std; #include <iomanip> double x3(const double & x){ double res; res = x * x * x; return r...
2023-03-29
0
209
题解 | #求最小公倍数#
#include <iostream> using namespace std; int func(int& res, const int& a, const int& b) { if (res % a == 0 && res % b == 0) { retur...
2023-03-29
0
202
题解 | #在字符串中找出连续最长的数字串#
#include <iostream> #include <vector> using namespace std; #include <string> #include <cctype> int main() { string str; ...
2023-03-18
0
284
题解 | #走方格的方案数#
#include <iostream> using namespace std; int main() { int m, n; cin >> m >> n; int x = 1; int y = 1; for (int i...
2023-03-18
0
246
题解 | #合法IP#
#include <iostream> #include <sstream> using namespace std; #include <string> #include<istream> int main() { string str; ...
2023-03-18
0
266
题解 | #24点运算#
#include <iostream> #include <sstream> using namespace std; #include <string> #include <vector> int str2num(string str) { ...
2023-03-18
0
421
题解 | #扑克牌大小#
#include <cstdio> #include <iostream> #include <sstream> using namespace std; #include <string> #include <istream> bool ...
2023-03-17
0
354
题解 | #密码强度等级#
#include <iostream> using namespace std; #include <string> #include <cctype> int lengthPoint(string str) { int point = 0; if...
2023-03-17
0
328
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页