朱定
朱定
全部文章
分类
归档
标签
去牛客网
登录
/
注册
朱定的博客
全部文章
(共36篇)
题解 | 反向输出一个四位数
#include <stdio.h> //bow to me you little garbage!!!!!!!!suckers int main() { int a; scanf("%d",&a); int b,c,d,e; b=a%10; ...
2025-03-21
0
57
题解 | 获得月份天数
#include <stdio.h> int isLeapYear(int y) { if ((y % 4 == 0 && y % 100 != 0)||(y % 400 == 0)) { return 1; } return ...
2025-03-21
0
69
题解 | 获得月份天数
#include <stdio.h> int main() { int year = 0; scanf("%d", &year); int month = 0; do { scanf("%d"...
2025-03-21
0
49
题解 | 牛牛的计划
#include <stdio.h> int main() { int a,b,c,d,e,f; scanf("%d %d %d\n%d %d %d",&a,&b,&c,&d,&e,&f); int sum1=a*1...
2025-03-21
0
52
题解 | 牛牛的计划
#include <stdio.h> int main() { int y,m,d,y1,m1,d1; scanf("%4d%d%d\n%4d%d%d",&y,&m,&d,&y1,&m1,&d1); if(y1<...
2025-03-21
0
68
题解 | KiKi算期末成绩
#include <stdio.h> int main() { int a,b,c,d; scanf("%d %d %d %d",&a,&b,&c,&d); float e=a*0.2+b*0.1+c*0.2+d*0...
2025-03-20
1
71
首页
上一页
1
2
3
4
下一页
末页