1011: [编程入门]最大公约数与最小公倍数 摘要:参考代码:#includeusing namespace std;int main(){ int a,b,maxx = 0; cin>>a>>b; for(int i = 1;i<=…… 题解列表 2023年07月11日 0 点赞 0 评论 435 浏览 评分:9.9
*****************************最大公约数与最小公倍数***************************** 摘要:解题思路 有那么亿点点多注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,maxx=0; …… 题解列表 2023年07月11日 0 点赞 0 评论 364 浏览 评分:9.9
1120: C语言训练-"水仙花数"问题2 摘要:解题思路: 就是一个一个用for循环试。。。注意事项: 这样的数有4个!4个!4个!重要的事情说三遍!!!参考代码:方法一:#include<bits/stdc++.h>using namespac…… 题解列表 2023年07月11日 0 点赞 0 评论 289 浏览 评分:9.9
C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std; int main(){ int N; cin >> N; while …… 题解列表 2023年07月11日 0 点赞 0 评论 297 浏览 评分: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 评论 390 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m, n,i; while (scanf("%d %d", &n, &m) == 2 && …… 题解列表 2023年07月11日 0 点赞 0 评论 590 浏览 评分:9.9
Python编写简单易懂 包含知识点 markdown编写 摘要:``` str1=input() # 字符串的输入 flag=len(str1) # 字符串的长度 for i in str1 : a=str1.find(i) …… 题解列表 2023年07月12日 0 点赞 0 评论 576 浏览 评分:9.9
简单又实用 摘要:```cpp #include #include // 包含cmath头文件来使用pow函数 using namespace std; int main() { int R, …… 题解列表 2023年07月12日 0 点赞 0 评论 694 浏览 评分:9.9
简单又实用 摘要:参考代码:#include <iostream>using namespace std;int main() { int n; cin >> n; int known_sum = 0…… 题解列表 2023年07月12日 0 点赞 0 评论 602 浏览 评分:9.9
简单又实用 摘要:参考代码:#include <iostream>#include <cmath> // 包含cmath头文件来使用M_PI常量using namespace std;int main() { …… 题解列表 2023年07月12日 0 点赞 0 评论 627 浏览 评分:9.9