忆秋尘飞
忆秋尘飞
全部文章
分类
归档
标签
去牛客网
登录
/
注册
忆秋尘飞的博客
全部文章
(共33篇)
题解 | #牛牛的并联电路#
#include <bits/stdc++.h> using namespace std; int main() { int r1, r2; float r; scanf("%d%d",&r1,&r2); r=float(r1*r2)...
2024-07-16
1
145
题解 | #牛牛的圆#
#include <bits/stdc++.h> using namespace std; int main() { int r; float s; scanf("%d",&r); s=3.14*r*r; printf("%...
2024-07-16
1
141
题解 | #温度转换#
#include <bits/stdc++.h> using namespace std; int main() { float f, c; scanf("%f",&f); c=5.0/9.0*(f-32); printf(&...
2024-07-16
0
125
题解 | #KiKi和酸奶#
#include <stdio.h> int main() { int n, h,m,c; scanf("%d%d%d",&n,&h,&m); if(m%h) c=n-m/h-1; els...
2024-07-16
0
144
题解 | #计算三角形的周长和面积#
#include <stdio.h> #include<math.h> int main() { unsigned int a, b,c; scanf("%d%d%d",&a,&b,&c); float circumferenc...
2024-07-16
0
129
题解 | #进制A+B#
#include <stdio.h> int main() { long long int a, b; scanf("%X%o",&a,&b); printf("%lld",a+b); return 0; }
2024-07-16
1
151
题解 | #缩短二进制#
#include <bits/stdc++.h> using namespace std; int main() { int a=1234; printf("%#o %#X",a,a); return 0; }
2024-07-16
1
148
题解 | #十六进制转十进制#
#include <bits/stdc++.h> using namespace std; int main() { int b=0; int c=1; for (int i=1;i<=5;i++) { c*=16; b+=c*(15-i)...
2024-07-16
1
157
题解 | #统计成绩#
#include <bits/stdc++.h> using namespace std; int main() { int n; float sum=0.0; float average,max,min; float arr[101]; scanf("...
2024-05-07
1
132
题解 | #牛牛的对齐#
#include <stdio.h> int main() { long long int a, b,c; scanf("%lld%lld%lld",&a,&b,&c); printf("%lld%8lld%8lld"...
2024-05-07
1
166
首页
上一页
1
2
3
4
下一页
末页