1181: 不容易系列2 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2022年11月19日 0 点赞 0 评论 485 浏览 评分:9.9
1182: 人民币问题 摘要:```cpp #include using namespace std; int main() { int a,b,c,count=0; int sum; cin…… 题解列表 2022年11月19日 0 点赞 0 评论 391 浏览 评分: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 评论 338 浏览 评分:0.0
1183: 人见人爱A+B 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; while(n--) …… 题解列表 2022年11月19日 0 点赞 0 评论 492 浏览 评分:9.9
2749: Hello, World! 摘要:```cpp #include using namespace std; int main() { cout…… 题解列表 2022年11月19日 0 点赞 0 评论 731 浏览 评分:6.8
2750: 字符菱形 摘要:```cpp #include #include using namespace std; int main() { char a; a=getchar(); for(int i…… 题解列表 2022年11月19日 0 点赞 0 评论 1142 浏览 评分:8.8
数列解析 供大家讨论 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,n,k; int count=0; …… 题解列表 2022年11月19日 0 点赞 0 评论 311 浏览 评分:0.0
1087: A+B for Input-Output Practice (III) C语言代码 摘要: #include int main() { int a,b; while(1) { …… 题解列表 2022年11月19日 0 点赞 0 评论 578 浏览 评分:9.9
大整数加法 摘要:解题思路:说白了,就是进位与ASCII码值的转换注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10000]={&…… 题解列表 2022年11月19日 0 点赞 6 评论 856 浏览 评分:9.9
通俗易懂好理解 摘要:参考代码:#include <stdio.h>int main(){ int i; int a[10000]; int n; scanf("%d",&n); for(i=0;i<n;i++){ a[…… 题解列表 2022年11月19日 0 点赞 0 评论 450 浏览 评分:9.9