好烦,这个小数点的下标烦死 摘要:解题思路:为了写这道题,去看了高精度加减法,一直看到高精度乘法,还去博客看reserve函数和find函数的使用,最后在B站上看老师讲解才大概明白注意事项:参考代码:#include<bits/…… 题解列表 2025年02月15日 2 点赞 0 评论 1002 浏览 评分:8.0
编写题解 1332: 津津的储蓄计划(注释清晰,简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[12] = { 0 };  …… 题解列表 2025年02月15日 1 点赞 0 评论 263 浏览 评分:10.0
三个数最大值 摘要:解题思路:条件表达式注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d%d%d",&a,…… 题解列表 2025年02月15日 13 点赞 1 评论 2056 浏览 评分:4.0
计算两点间距离:难点在于EOF错误输入的处理 摘要:解题思路:这一题逻辑上很简单,直接套公式就可以,但是难点在于这一题的测试数据中有一个很不标准的EOF输入,如果你用Python写很吃亏,因为input()输入不能直接处理该错误,建议加一个try-ex…… 题解列表 2025年02月15日 1 点赞 0 评论 256 浏览 评分:10.0
打印平行四边形 摘要:```cpp#includeusing namespace std;int main(){ int a,b,c,d; scanf("%d",&a); for(b=a…… 题解列表 2025年02月15日 0 点赞 0 评论 95 浏览 评分:0.0
蓝桥杯基础练习-十六进制转八进制 摘要:```cpp#includeusing namespace std;int main(){ //乱搞 int a,b,c; cin>>a>>b>>c; cout…… 题解列表 2025年02月15日 0 点赞 0 评论 128 浏览 评分:0.0
Python代码-8除不尽的数 摘要:```pythondef check(n): if n % 8 == 1: if (n//8) % 8 == 1: if (n//8//8) …… 题解列表 2025年02月15日 0 点赞 0 评论 143 浏览 评分:0.0
[信息学奥赛一本通T1495-孤岛营救问题] - (BFS,SPFA,DIjkstra)+状压DP 摘要:```cpp#include // #define int long long // 自觉去掉,当需要 memset 数组为 0x3f 时使用#define INF 0x3f3f3f3f …… 题解列表 2025年02月15日 0 点赞 0 评论 129 浏览 评分:0.0
3018:末两位数 摘要:解题思路:注意事项:参考代码:n=int(input())sum=1992**na=sum%100print(f'{a:0>2d}')…… 题解列表 2025年02月15日 0 点赞 0 评论 83 浏览 评分:0.0
1162: 密码(c语言解法,步骤简明,容易看懂) 摘要:#include <stdio.h>#include <math.h>#include <string.h>void pd(char a[50]);int main…… 题解列表 2025年02月14日 1 点赞 0 评论 152 浏览 评分:10.0