F145H
F145H
全部文章
分类
归档
标签
去牛客网
登录
/
注册
F145H的博客
全部文章
(共76篇)
题解 | 学生基本信息输入输出
#include <stdio.h> int main() { int i; double a,b,c; scanf("%d;%lf,%lf,%lf", &i, &a, &b, &c); a = (in...
2026-01-14
0
39
题解 | 成绩输入输出
#include <stdio.h> int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); printf("score1=%d,score2=%d,score...
2026-01-14
0
36
题解 | 实现四舍五入
#include <stdio.h> int main() { double x; scanf("%lf",&x); int y = x; if(x>=0) { if((x - y) >= ...
2026-01-14
0
36
题解 | 字符转ASCII码
#include <stdio.h> int main() { char c; scanf("%c",&c); printf("%d",c); return 0; }
2026-01-14
0
33
题解 | 牛牛的字符菱形
#include <stdio.h> int main() { char c; scanf("%c",&c); int times = 0; while(times < 5) { times++;...
2026-01-14
0
30
题解 | 牛牛的字符矩形
#include <stdio.h> int main() { char c; scanf("%c",&c); for(int i=1; i<=3; i++) { for(int j=1; j<=3...
2026-01-14
0
26
题解 | 牛牛的第二个整数
#include <stdio.h> int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); printf("%d",b); return 0...
2026-01-14
0
28
题解 | 【模板】牛牛学说话之-字符
#include <stdio.h> int main() { char c; scanf("%c",&c); printf("%c",c); return 0; }
2026-01-14
0
33
题解 | 小飞机
#include <stdio.h> int main() { printf(" ** \n"); printf(" ** \n"); printf("************\n...
2026-01-14
0
42
题解 | 疫情死亡率
#include <stdio.h> int main() { double c, d; scanf("%lf %lf", &c, &d); double result = (d / c) * 100; printf(...
2026-01-14
0
42
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页