Sakura_6
Sakura_6
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Sakura_6的博客
全部文章
(共10篇)
题解 | 计算一元二次方程
#include <math.h> #include <stdio.h> int main() { double a,b,c; while(scanf("%lf %lf %lf",&a,&b,&c)!=EOF) ...
2025-10-08
0
5
题解 | 三角形判断
#include <stdio.h> int main() { double a,b,c; while(scanf("%lf %lf %lf",&a,&b,&c)!=EOF) { if(a+b>c&am...
2025-10-08
0
4
题解 | 小红喜欢1
#include <stdio.h> int main() { int arr[11]; for(int i=0;i<5;i++) { scanf("%d ",&arr[i]); if(arr[...
2025-10-06
1
10
题解 | 判断是元音还是辅音
#include <stdio.h> int main() {char s; while(scanf("%c",&s)!=EOF) { if(s == ' ' || s == '\n') con...
2025-10-04
1
9
题解 | kiki算数
#include <stdio.h> int main() { int a,b; int he; int i; scanf("%d %d",&a,&b); he = a%100+b%100; printf("%d&quo...
2025-10-04
0
9
题解 | 小乐乐改数字
#include <stdio.h> int main() { int n = 0; scanf("%d", &n); int ret = 0; int i = 0; while (n) { ...
2025-10-04
0
7
题解 | 小乐乐与欧几里得
#include <stdio.h> int main() { long n,m,g,h,x; long yinshu,beishu; scanf("%ld %ld",&n,&m); g=m; h=n; ...
2025-10-03
1
9
题解 | 小乐乐定闹钟
#include <stdio.h> int main() { int hour,min,k; int nowhour ,nowmin; scanf("%d:%d %d",&hour ,&min,&k); nowhour...
2025-10-02
1
7
题解 | 牛牛的水杯
#include <stdio.h> int main() { int water = 10; int num; int h,r; scanf("%d %d",&h,&r); double v; ...
2025-10-02
1
8
题解 | 统计成绩
#include <stdio.h> int main() { int n; float max = 0,min = 1000; float arr[11]; float sum = 0.0; scanf("%d"...
2025-10-02
1
10