活跃的四郎在发呆
活跃的四郎在发呆
全部文章
分类
归档
标签
去牛客网
登录
/
注册
活跃的四郎在发呆的博客
全部文章
(共19篇)
题解 | #反斜线形图案#
#include <stdio.h> int main() { int a, b,i,j; while(scanf("%d",&a)!=EOF) { for(i=0;i<a;i++)//行数 { ...
2024-01-15
1
152
题解 | #计算一元二次方程#
#include <stdio.h> #include<math.h> int main() { double a, b, c; while (scanf("%lf %lf %lf", &a, &b, &c) !=...
2024-01-13
0
149
题解 | #计算一元二次方程#
#include <stdio.h> #include<math.h> int main() { double a, b, c; while (scanf("%lf %lf %lf", &a, &b, &c) !=...
2024-01-13
0
174
题解 | #网购#
#include <stdio.h> int main() { int a, b, c; double sum = 0, money; scanf("%lf%d%d%d", &sum, &a, &b, &c);...
2024-01-13
0
106
题解 | #四季#
#include <stdio.h> int main() { int a, b; scanf("%4d%2d",&a,&b); if(b>=3&&b<=5) printf("sp...
2024-01-13
0
133
题解 | #判断整数奇偶性#
#include <stdio.h> int main() { int a, b; while(scanf("%d",&a)!=EOF) { if(a%2==0) printf("Even\n...
2024-01-13
0
118
题解 | #牛牛的水杯#
#include <stdio.h> #include<math.h> int main() { int a, b; scanf("%d%d", &a, &b); double v = 3.14 * a * pow...
2024-01-12
0
115
题解 | #牛牛的字符菱形#
#include <stdio.h> int main() { char a; scanf("%c",&a); int i=0; int j=0; for(i=0;i<5;i++) { i...
2023-12-18
0
120
题解 | #获取字符串长度#
#include <iostream> #include<stdio.h> #include<string.h> using namespace std; int main() { char arr[100]; int i=0; whil...
2023-12-17
0
108
首页
上一页
1
2
下一页
末页