GDUT_25_韦育豪
GDUT_25_韦育豪
全部文章
分类
归档
标签
去牛客网
登录
/
注册
GDUT_25_韦育豪的博客
全部文章
(共2篇)
题解 | 记数问题
#include <stdio.h> void times(int n,int x,int *count){ while(n>0){ if(n%10==x){ (*count)++; } n/=10; ...
2026-02-01
0
28
题解 | 水仙花数
#include <stdio.h> #include "math.h" int shui(int n){ int weight=0; int t=n; while(t>0){ weight++; t/=1...
2026-02-01
0
23