1056: 二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:注意细节就好F = int(input())C = (5 / 9) * (F - 32)print(f"{C:.2f}")…… 题解列表 2024年01月24日 0 点赞 0 评论 186 浏览 评分:0.0
蓝桥杯2017年第八届真题-拉马车 摘要:看的大佬代码,做个印象 ```java import java.util.Scanner; public class Main { public static void main(…… 题解列表 2024年01月24日 0 点赞 0 评论 162 浏览 评分:0.0
T3037棋盘问题 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int n,k,ans;char mp[10][10];bool vis[10];void …… 题解列表 2024年01月24日 0 点赞 0 评论 243 浏览 评分:0.0
自由下落的距离计算 摘要:解题思路:设计一个函数计算每次的m值,并且计算路程注意事项:路程为触地时的路程参考代码:#include <stdio.h>#include <stdlib.h>float jump(float M,…… 题解列表 2024年01月24日 0 点赞 0 评论 192 浏览 评分:0.0
1069: 二级C语言-寻找矩阵最值 摘要:解题思路:注意事项:参考代码:n = int(input())matrix = []for _ in range(n): matrix.append(list(map(int, input().…… 题解列表 2024年01月24日 0 点赞 0 评论 142 浏览 评分:0.0
编写题解 2903: 不高兴的津津,超级简单 摘要:解题思路:找最大值,判断是否大于8小时,是的话就输出下标。注意事项:数组从1开始。参考代码:#include<iostream>using namespace std;int main(){ i…… 题解列表 2024年01月25日 0 点赞 0 评论 114 浏览 评分:0.0
有规律的数列求和 摘要:参考代码:#include <stdio.h>#include <stdlib.h>float sum_dev(float fenzi,float fenmu,int n,float s){ if(n…… 题解列表 2024年01月25日 0 点赞 0 评论 356 浏览 评分:0.0
第四届真题-带分数 摘要:解题思路:注意事项:参考代码:/*暴力思路: 1.枚举全排列 2.枚举a,b,c的每一位数,枚举其中两个即可。可以使用高中排列知识,在9位数中找2个空隙放隔板 3.判断等式是否成立*/ #in…… 题解列表 2024年01月25日 0 点赞 0 评论 202 浏览 评分:0.0
python解答,内容简洁易读 摘要:参考代码:def match_strings(s1, s2): i, j = 0, 0 while i < len(s1) and j < len(s2): if s1[i]…… 题解列表 2024年01月25日 0 点赞 0 评论 127 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:a=input()s=[]for i in a: if i=="a" or i=="e" or i=="i" or i=="o" or i=="u": …… 题解列表 2024年01月25日 0 点赞 0 评论 113 浏览 评分:0.0