莉露C语言编写题解 2863: 删除单词后缀 摘要:解题思路:暴力破解注意事项:str[strcspn(str,"\n")] = '\0';,否则会把\n算进去,er消不掉参考代码:#include<stdio…… 题解列表 2026年03月30日 0 点赞 0 评论 57 浏览 评分:0.0
1789:骑车与走路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int distance; float time1,time2; scanf("%d&qu…… 题解列表 2026年04月01日 0 点赞 0 评论 60 浏览 评分:0.0
1043:三个数按从小到大排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,t; scanf("…… 题解列表 2026年04月01日 0 点赞 0 评论 69 浏览 评分:0.0
使用简单的数据结构(矩阵) 摘要:解题思路:迪杰斯特拉算法注意事项:参考代码:#include<iostream>#include<limits>#include<al…… 题解列表 2026年04月01日 0 点赞 0 评论 42 浏览 评分:0.0
新手好理解的代码逻辑 摘要:解题思路:注意事项:while( 差距 >= 0.00001 ){ 继续迭代}参考代码:#include<stdio.h>#include<…… 题解列表 2026年04月01日 0 点赞 0 评论 48 浏览 评分:0.0
异或领域的乘法分配律 摘要:```pythonimport sysimport mathdef main(): input_data = sys.stdin.read().split() if…… 题解列表 2026年04月01日 0 点赞 0 评论 43 浏览 评分:0.0
1811基础解法(简短输出) 摘要:解题思路:题目:输入一个双精度浮点数,输出这个浮点数的%f结果、保留5位小数的结果、%e、%g格式的结果…… 题解列表 2026年04月02日 0 点赞 0 评论 40 浏览 评分:0.0