东方不二
东方不二
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
东方不二的博客
全部文章
(共87篇)
题解 | #三角形判断#
#include <stdio.h> int main() { int a, b, c; while (scanf("%d %d %d", &a, &b, &c) != EOF) { if (a + c &...
2024-10-10
1
58
题解 | #计算单位阶跃函数#
#include <stdio.h> int main() { float input = 0; while (scanf("%f",&input) != EOF) { if(input > 0) ...
2024-10-10
1
74
题解 | #HTTP状态码#
#include <stdio.h> int main() { int num = 0; while (scanf("%d", &num) != EOF) { switch (num) { ...
2024-10-09
1
62
题解 | #牛牛的一周#
#include <stdio.h> int main() { int day = 0; scanf("%d",&day); switch (day) { case 1: printf(...
2024-10-09
1
75
题解 | #牛牛的金币#
#include <stdio.h> int main() { int x, x1, y, y1; scanf("%d %d",&x,&y); scanf("%d %d",&x1,&y1);...
2024-10-09
1
68
题解 | #牛牛的通勤#
#include <stdio.h> int main() { int distance = 0; scanf("%d",&distance); int walk = distance * 1; int takeCar = 1...
2024-10-09
1
75
题解 | #牛牛的快递#
#include <stdio.h> int main() { float a = 0.0f; char b = 0; scanf("%f %c",&a,&b); float jude = a - 1; int...
2024-10-09
1
108
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页