数列解析 供大家讨论 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,n,k; int count=0; …… 题解列表 2022年11月19日 0 点赞 0 评论 171 浏览 评分:0.0
2750: 字符菱形 摘要:```cpp #include #include using namespace std; int main() { char a; a=getchar(); for(int i…… 题解列表 2022年11月19日 0 点赞 0 评论 1021 浏览 评分:8.8
2749: Hello, World! 摘要:```cpp #include using namespace std; int main() { cout…… 题解列表 2022年11月19日 0 点赞 0 评论 626 浏览 评分:6.8
1183: 人见人爱A+B 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; while(n--) …… 题解列表 2022年11月19日 0 点赞 0 评论 313 浏览 评分:9.9
[Python]自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:def yue(a,b): if a < b: a,b = b,a for i in range(2,b+1): if a%i =…… 题解列表 2022年11月19日 0 点赞 0 评论 182 浏览 评分:0.0
1182: 人民币问题 摘要:```cpp #include using namespace std; int main() { int a,b,c,count=0; int sum; cin…… 题解列表 2022年11月19日 0 点赞 0 评论 246 浏览 评分:9.9
1181: 不容易系列2 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2022年11月19日 0 点赞 0 评论 342 浏览 评分:9.9
只是写写注意事项 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d",&a); getchar(); //这里写…… 题解列表 2022年11月19日 0 点赞 0 评论 713 浏览 评分:9.9
糖果游戏(简单一般法) 摘要:解题思路:就是一个很简单的循环加上条件分支。注意事项:参考代码:#include<stdio.h>int main(){ int a[5]; int i=0; for(i=0;i<5…… 题解列表 2022年11月19日 0 点赞 6 评论 973 浏览 评分:9.9
1013: [编程入门]Sn的公式求和(通过通项公式实现) 摘要:解题思路:这里是应用高中内容求出2 22 222 2222......的通项公式求解首先我们可以很容易知道在n =(1,2,3......)时10^n = 10,100,1000......而再减去1…… 题解列表 2022年11月19日 0 点赞 0 评论 216 浏览 评分:9.9