chud
chud
全部文章
分类
归档
标签
去牛客网
登录
/
注册
chud的博客
全部文章
(共3篇)
题解 | 小乐乐求和
#include <iostream> #include <iomanip>// 用于 fixed、setprecision #include <cmath> // 用于 round、trunc、floor、ceil using namespace std; ...
2026-02-02
0
17
题解 | 疫情死亡率
#include <iostream> using namespace std; int main() { long long c=0,d=0; long double r=0; cin>>c>>d; //检测输入是否合法 // wh...
2026-01-31
0
10
题解 | 复读机
#include <iostream> #include <string> using namespace std; int main() { //定义并赋初值 long a=0, b=0; double c=0; char d='a'; ...
2026-01-31
0
14