C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std; int main(){ int N; cin >> N; while …… 题解列表 2023年07月11日 0 点赞 0 评论 318 浏览 评分:9.9
2324: 光头强购买新家具 摘要:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;int n,m;int a[10005];bool vis[1…… 题解列表 2023年07月11日 0 点赞 0 评论 409 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m, n,i; while (scanf("%d %d", &n, &m) == 2 && …… 题解列表 2023年07月11日 0 点赞 0 评论 611 浏览 评分:9.9
Python编写简单易懂 包含知识点 markdown编写 摘要:``` str1=input() # 字符串的输入 flag=len(str1) # 字符串的长度 for i in str1 : a=str1.find(i) …… 题解列表 2023年07月12日 0 点赞 0 评论 589 浏览 评分:9.9
简单又实用 摘要:```cpp #include #include // 包含cmath头文件来使用pow函数 using namespace std; int main() { int R, …… 题解列表 2023年07月12日 0 点赞 0 评论 712 浏览 评分:9.9
简单又实用 摘要:参考代码:#include <iostream>using namespace std;int main() { int n; cin >> n; int known_sum = 0…… 题解列表 2023年07月12日 0 点赞 0 评论 623 浏览 评分:9.9
简单又实用 摘要:参考代码:#include <iostream>#include <cmath> // 包含cmath头文件来使用M_PI常量using namespace std;int main() { …… 题解列表 2023年07月12日 0 点赞 0 评论 649 浏览 评分:9.9
第n小的质数(C++代码) 摘要: 参考代码 ```cpp #include #include using namespace std; bool isPrime(in…… 题解列表 2023年07月12日 0 点赞 0 评论 714 浏览 评分:9.9
信息学奥赛一本通T1620-质因数分解(C++代码) 摘要:参考代码:#include<iostream>using namespace std;int findLargerPrimeFactor(int n) { int largerPrime = 0…… 题解列表 2023年07月12日 0 点赞 0 评论 362 浏览 评分:9.9
题解 2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int k; double s=0; c…… 题解列表 2023年07月12日 0 点赞 0 评论 295 浏览 评分:9.9