2770: 计算浮点数相除的余数 摘要:```cpp #include using namespace std; int main() { double a,b; int k; cin>>a>>b; …… 题解列表 2023年02月11日 0 点赞 0 评论 835 浏览 评分:9.9
3082: 奇怪的电梯(lift) 摘要:```cpp #include using namespace std; int i,n,a,b,head,tail=1,p[210],s[210][2],f[210]; int main()…… 题解列表 2023年02月11日 0 点赞 0 评论 540 浏览 评分:10.0
dfedgfggdsgfrgzfvdfvdfwefdsfszf 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<queue>#include<map>#include<algorithm>using namespace std;…… 题解列表 2023年02月11日 0 点赞 0 评论 488 浏览 评分:4.7
c++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x,y; cin>>x; if (x<1) …… 题解列表 2023年02月11日 0 点赞 0 评论 649 浏览 评分:9.9
无数组版(暂时不是很喜欢用数组) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,a,g,b=0,t; scanf("%d",&n); for(i=0;i<n;…… 题解列表 2023年02月11日 0 点赞 0 评论 558 浏览 评分:9.9
1000: [竞赛入门]简单的a+b 摘要:参考代码:while True: try: a,b=map(int,input().strip().split()) print(a+b) except: break…… 题解列表 2023年02月11日 1 点赞 0 评论 1741 浏览 评分:6.0
编写题解 3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a[1001],maxx=1; cin>>n; …… 题解列表 2023年02月11日 0 点赞 0 评论 493 浏览 评分:9.9
2124: 信息学奥赛一本通T1259-求最长不下降序列 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include…… 题解列表 2023年02月11日 0 点赞 0 评论 433 浏览 评分:0.0
Python统计数字字符个数 摘要:解题思路:注意事项:参考代码:n=input()count=0for i in n: if i>='0' and i<='9': count+=1p…… 题解列表 2023年02月10日 0 点赞 0 评论 438 浏览 评分:0.0
Python解统计字符 摘要:解题思路:注意事项:参考代码:n = input()a = 0b = 0c = 0d = 0for i in n: if (i>='a' and i<='z') …… 题解列表 2023年02月10日 0 点赞 0 评论 363 浏览 评分:0.0