1811基础解法(简短输出) 摘要:解题思路:题目:输入一个双精度浮点数,输出这个浮点数的%f结果、保留5位小数的结果、%e、%g格式的结果…… 题解列表 2026年04月02日 0 点赞 0 评论 18 浏览 评分:0.0
异或领域的乘法分配律 摘要:```pythonimport sysimport mathdef main(): input_data = sys.stdin.read().split() if…… 题解列表 2026年04月01日 0 点赞 0 评论 19 浏览 评分:0.0
新手好理解的代码逻辑 摘要:解题思路:注意事项:while( 差距 >= 0.00001 ){ 继续迭代}参考代码:#include<stdio.h>#include<…… 题解列表 2026年04月01日 0 点赞 0 评论 22 浏览 评分:0.0
使用简单的数据结构(矩阵) 摘要:解题思路:迪杰斯特拉算法注意事项:参考代码:#include<iostream>#include<limits>#include<al…… 题解列表 2026年04月01日 0 点赞 0 评论 21 浏览 评分:0.0
1043:三个数按从小到大排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,t; scanf("…… 题解列表 2026年04月01日 0 点赞 0 评论 37 浏览 评分:0.0