新手好理解的代码逻辑 摘要:解题思路:注意事项:while( 差距 >= 0.00001 ){ 继续迭代}参考代码:#include<stdio.h>#include<…… 题解列表 2026年04月01日 0 点赞 0 评论 53 浏览 评分:0.0
异或领域的乘法分配律 摘要:```pythonimport sysimport mathdef main(): input_data = sys.stdin.read().split() if…… 题解列表 2026年04月01日 0 点赞 0 评论 44 浏览 评分:0.0
1811基础解法(简短输出) 摘要:解题思路:题目:输入一个双精度浮点数,输出这个浮点数的%f结果、保留5位小数的结果、%e、%g格式的结果…… 题解列表 2026年04月02日 0 点赞 0 评论 41 浏览 评分:0.0
蓝桥杯2025年第十六届省赛真题-变换数组 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int n;scanf("%d", &n);&nb…… 题解列表 2026年04月02日 2 点赞 0 评论 165 浏览 评分:0.0
反向遍历法 摘要:解题思路:先保存,后逆向输出注意事项:处理换行符:fgets 会把输入的回车 \n 一起读入字符串,必须用 str[strcspn(str, "\n")] = '\0…… 题解列表 2026年04月02日 0 点赞 0 评论 74 浏览 评分:0.0