在抱佛脚的海豚很想吃烤肉
在抱佛脚的海豚很想吃烤肉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在抱佛脚的海豚很想吃烤肉的博客
全部文章
(共41篇)
题解 | #约数的个数#
#include <stdio.h> #include <math.h> int ApproxiNum(long long x) { if (x == 1) return 1; else { long long y = sqrt...
2023-02-26
0
256
题解 | #Prime Number#
#include <stdio.h> #include <math.h> #include <stdbool.h> // 判断质数: bool Prime(int x) { if (x == 1) return false; int...
2023-02-26
0
260
题解 | #素数#
#include <stdio.h> #include <math.h> #include <stdbool.h> // 判断质数: bool Prime(int x) { if (x == 1) return false; int...
2023-02-26
0
330
题解 | #素数判定#
#include <stdio.h> #include <math.h> #include <stdbool.h> bool Prime(int x) { if(x==1) return false; int y = sqrt(x)...
2023-02-24
0
267
题解 | #最简真分数#
#include <stdio.h> int DCN(int a,int b) { if(b==0) return a; else return DCN(b,a%b); } int main() { int n; while((scanf(...
2023-02-24
0
301
题解 | #最大公约数#
#include <stdio.h> int main() { int m, n; while ((scanf("%d %d", &m, &n)) != EOF) { int l, k; if (m > n) { ...
2023-02-24
0
277
题解 | #数制转换#
#include <stdio.h> #include <math.h> #include <stdbool.h> #define MAXSIZE 200 typedef int ElemType; // 计算字符串长度: int Length(char a[])...
2023-02-24
0
365
题解 | #进制转换#
#include <stdio.h> #include <math.h> // 计算字符串长度: int Length(char a[]) { int n = 0; for (int i = 0; a[i] != '\0'; i++) { n+...
2023-02-24
0
278
题解 | #打印日期#
#include <stdio.h> #include <stdbool.h> bool IsRunYear(int year) { return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0); } i...
2023-02-24
0
254
题解 | #又一版 A+B#
#include <stdio.h> #include <math.h> #include <stdbool.h> #define MAXSIZE 50 typedef int ElemType; typedef struct { ElemType dat...
2023-02-24
0
303
首页
上一页
1
2
3
4
5
下一页
末页