喜欢唱跳rap火龙果在写日记
喜欢唱跳rap火龙果在写日记
全部文章
分类
归档
标签
去牛客网
登录
/
注册
喜欢唱跳rap火龙果在写日记的博客
全部文章
(共9篇)
题解 | #小乐乐转换成绩#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { if (90 <= n && n <= 100) { ...
2024-11-27
0
8
题解 | #网购#
#include <stdio.h> int main() { int b, c, d; double a, goal; while (scanf("%lf %d %d %d", &a, &b, &c, &d)...
2024-11-27
0
7
题解 | #计算单位阶跃函数#
#include <stdio.h> void y(double x) { if (x > 0) { printf("1\n"); } else if (x == 0) { printf("0.5\n"...
2024-11-27
0
8
题解 | #健康评估#
#include <stdio.h> int main() { double a,b,s; while (scanf("%lf %lf", &a, &b) != EOF) { s=a/(b*b); if(1...
2024-11-26
0
6
题解 | #直角三角形图案#
#include <stdio.h> int print(int n) { static int k = 1; for (int i = 0; i < k; i++) { printf("* "); } prin...
2024-11-26
0
10
题解 | #KiKi算期末成绩#
#include<stdio.h> int main() { double a, b, c, d; double s; while (scanf("%lf %lf %lf %lf", &a, &b, &c, &d...
2024-11-26
0
8
题解 | #进制A+B#
#include <stdio.h> int turn(int x) { int yua; int goal = 0; int power = 1; yua = x; while (yua) { int s = yua % 16; ...
2024-11-26
0
7
题解 | #我是大V#
#include<stdio.h> int main() { char ba[3][5] = {'v', ' ', ' ', ' ', 'v', ' ', 'v', ' ', 'v', ' ', ' ', ' ', 'v', ' ', ' '}; for (int i =...
2024-11-26
0
7
题解 | #奇偶统计#
#include <stdio.h> int main() { int N; scanf("%d",&N); if(N%2==0) { printf("%d %d\n",N/2,N/2); ...
2024-11-24
1
8