通过坐标转换计算两点之间的距离 摘要:解题思路:通过坐标转换进行求解注意事项:参考代码:import math ver = list(map(int,input().split())) def x_y_transform(ver):#…… 题解列表 2023年01月04日 0 点赞 4 评论 1059 浏览 评分:9.0
2754: 其他基本数据类型存储空间大小 题解 摘要:解题思路:遵照题意即可参考代码:#include<bits/stdc++.h>using namespace std;int main(){ bool a; char b; cout…… 题解列表 2023年01月07日 0 点赞 0 评论 577 浏览 评分:9.0
3000: 交换值 摘要:```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; cout…… 题解列表 2023年01月08日 0 点赞 0 评论 890 浏览 评分:9.0
麻瓜方法 教你如何求e(正常人思维=_=||) 摘要:解题思路: 根据题目一步一步写就可以了,下面请欣赏我的高质量答案=_=||注意事项: 像我这样写就要注意初始o值的变化参考代码:#include<stdio.h>int m…… 题解列表 2023年01月08日 0 点赞 0 评论 631 浏览 评分:9.0
3007: “敏感词汇?”(c++代码) 摘要:```cpp #include #include using namespace std; int main() { double m; cin>>m; cou…… 题解列表 2023年01月08日 0 点赞 0 评论 464 浏览 评分:9.0
3019: 约瑟夫问题 摘要:```cpp #include using namespace std; int main() { int n,m,i,j=1,count=0,a[10001],b[10001]; …… 题解列表 2023年01月09日 0 点赞 0 评论 613 浏览 评分:9.0
2769: 计算并联电阻的阻值 摘要:```cpp #include #include using namespace std; int main() { double r1,r2; cin>>r1>>r2;…… 题解列表 2023年01月11日 0 点赞 0 评论 568 浏览 评分:9.0
1313: 字符串的距离 摘要:```cpp #include #include #include using namespace std; int A[2010][2010],len1,len2,k; char s1[…… 题解列表 2023年01月12日 0 点赞 0 评论 571 浏览 评分:9.0
题解:蓝桥杯2020年第十一届省赛真题-成绩分析 摘要:#### 简单思路:使用整数`mx=0`筛选`n`个数中的最大值,`mn=100`筛选出`n`个数中的最小值,浮点数`avg=0`累加`n`个数的和 ##### 注意事项:求最大值,初始值设定为…… 题解列表 2023年01月14日 0 点赞 0 评论 469 浏览 评分:9.0
题解 2841: 大整数加法 (c++)string解题 摘要:解题思路:用string把输入的数字倒叙存入在数组里面,然后进行对位相加,再倒叙输出参考代码:#include <iostream> using namespace std; string s1,…… 题解列表 2023年01月19日 1 点赞 0 评论 699 浏览 评分:9.0