题解列表
1172计算两点间的距离(sqrt和pow综合运用)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ double x1, y1, x2, y……
1171蟠桃记(两个while循环)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; while (cin >> n) { int m = ……
编写题解 1134: C语言训练-求PI*
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { double sum=0; char b=1; long long s=1; for(……
题目 1072: 汽水瓶,C++实现,超级简单
摘要:##题目 1072: 汽水瓶,C++实现,超级简单
######原题链接[题目 1072: 汽水瓶](https://www.dotcpp.com/oj/problem1072.html "题目 1……
题解 1157: 亲和数
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll a[100000],b[10000……
1999: 回文判断
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll fanzhuan(ll x){ ……
2968: 区间内的真素数
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll fanzhuan(ll x){ ……