成绩评定用if的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x>=90) printf("A\n"); else if…… 题解列表 2024年03月18日 0 点赞 0 评论 512 浏览 评分:0.0
编写题解 2788: 晶晶赴约会,python超简单 摘要:解题思路:用列表注意事项:无参考代码:# 获取用户输入的日期(星期几)day = int(input())# 定义一个列表,包含晶晶的上课日busy_days = [1, 3, 5]# 判断输入的日期…… 题解列表 2024年03月18日 0 点赞 0 评论 579 浏览 评分:2.0
数学真的很重要 摘要:解题思路:这是一个数学类型的题目,代码很简单,只要核心想到了答案就出来了。最大的不能买到的数字就是两个数字的最小公倍数再减去它们之和(设它为t),为什么是这样呢?最小公倍数就是两个数都可以单独构成,在…… 题解列表 2024年03月18日 0 点赞 0 评论 623 浏览 评分:0.0
自定义函数求一元二次方程,非常简单的做法 摘要:参考代码:#include<iostream> #include<math.h>using namespace std;int main(){ double a,b,c; double x1,x2,x…… 题解列表 2024年03月18日 0 点赞 0 评论 511 浏览 评分:0.0
2809: 菲波那契数列(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b[9999],i; scanf("%d", &a); b[0]=1,b[1]=1…… 题解列表 2024年03月18日 0 点赞 0 评论 371 浏览 评分:9.9
切开字符串-C语言 摘要:## 切开字符串-C语言 函数:正回文子串种类(manacher算法)、所有子串种类-正回文子串种类 ``` #include #define MaxChar 100001 int O…… 题解列表 2024年03月18日 0 点赞 0 评论 371 浏览 评分:0.0
1226题解——贪心 摘要:解题思路:分奇偶两种情况考虑。注意事项:参考代码:#include <stdio.h> #include <iostream> using namespace std; int gc…… 题解列表 2024年03月17日 0 点赞 0 评论 385 浏览 评分:0.0
注意‘'x"要大写 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int h,l,i,z,y; int d;const int n;const int j;int *p=&j;…… 题解列表 2024年03月17日 0 点赞 0 评论 401 浏览 评分:0.0
直接解方程组 摘要:解题思路:注意事项:参考代码:x, a, y, b = map(int, input().split())m = b*y - a*xn = b- ares= m / nprint('%.2f&…… 题解列表 2024年03月17日 1 点赞 0 评论 568 浏览 评分:0.0