牛客567628359号
牛客567628359号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客567628359号的博客
全部文章
(共35篇)
题解 | #浮点数加法#
#include <iostream> #include <string> #include <bits/stdc++.h> using namespace std; void f_init(string& a, string& a1, string& a2)...
2023-03-17
0
302
题解 | #首字母大写#
#include <iostream> using namespace std; bool check(string s,int i){ if(s[i]==' '||s[i]=='\t'||s[i]=='\r'||s[i]=='\n')return true; retu...
2023-03-17
0
239
题解 | #单词替换#
#include <iostream> using namespace std; int main() { string s,a,b; while (getline(cin,s)) { // 注意 while 处理多个 case getline(cin,...
2023-03-17
0
335
题解 | #日期差值#
#include <iostream> using namespace std; bool check_year(int year){ if((year%4==0&&year%100!=0)||year%400==0)return true; return false; ...
2023-03-14
0
277
题解 | #日期累加#
#include <iostream> using namespace std; bool check_year(int year){ if((year%4==0&&year%100!=0)||year%400==0)return true; return false;...
2023-03-14
0
375
首页
上一页
1
2
3
4
下一页
末页