奶酪不失眠
奶酪不失眠
全部文章
分类
归档
标签
去牛客网
登录
/
注册
奶酪不失眠的博客
全部文章
(共3篇)
题解 | 小红的gcd
#include <stdio.h> #include <stdlib.h> long long gcd(long long a,long long b){ while(b!=0){ int temp = b; b = a%b; ...
2026-01-31
0
69
题解 | 特殊的科学计数法
#include <iostream> #include <string> using namespace std; int main() { string n; cin>>n; int len = n.size(); int c...
2026-01-31
0
36
题解 | 特殊的科学计数法
#include <stdio.h> #include <string.h> int main() { char n[100000]; scanf("%s", n); int len = strlen(n); int c =...
2026-01-31
1
38