2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:s = input() c = 0 for i in s: if i.isdigit(): c += 1 print(c)…… 题解列表 2024年08月01日 0 点赞 0 评论 812 浏览 评分:0.0
所有代码中唯一没有用while的 摘要:```python def hs(q): p=0 for i in range(10): if p>=9: return(0) …… 题解列表 2024年08月01日 0 点赞 0 评论 604 浏览 评分:0.0
方便的find查找 摘要:#include<bits/stdc++.h> using namespace std; int main() { int n,cnt=0; cin>>n; for…… 题解列表 2024年08月01日 0 点赞 0 评论 143 浏览 评分:0.0
使用结构体数组,简单易懂 摘要:解决本题我使用了结构体数组的方法 每一个小结构体数组存储一个大数,每一个大数使用长度为10000的char类型数组存储 然后比较的时候使用选择排序,内部先把要比较的两个数的长度算出来(可以使用st…… 题解列表 2024年08月01日 0 点赞 0 评论 192 浏览 评分:9.9
使用qsort函数排序 摘要:这道题坑挺多 首先,假如数组元素只有一个,那个只需要把那个元素输出,然后再输出一个-1即可,其次,这道题需要连续输入。 ```c #include #include int cmp(co…… 题解列表 2024年08月01日 0 点赞 0 评论 196 浏览 评分:0.0
4行:万花丛中过,片叶不沾身 摘要:解题思路:再也不想掉进整除的坑了注意事项:参考代码:a=int(input())b=int(input())print(a//b)print(a%b)…… 题解列表 2024年08月01日 0 点赞 0 评论 585 浏览 评分:2.0
3行:万花丛中过,片叶不沾身 摘要:解题思路:摘一颗苹果,来送给你解渴注意事项:我也不知为何,伤口还没愈合参考代码:a=int(input())b=int(input())print(a*b)…… 题解列表 2024年08月01日 0 点赞 0 评论 683 浏览 评分:0.0
优质题解,有解析 摘要:解题思路:注意事项:参考代码:# 读取输入矩阵 matrix = [] for _ in range(5): row = list(map(int, input().split())) …… 题解列表 2024年08月01日 0 点赞 0 评论 285 浏览 评分:0.0
对于这个问题,直接用找规律,然后根据规律直接求解 摘要:参考代码:#include<stdio.h>int main(){ int n; int mid; scanf("%d",&n); mid=n/2; for(int i=…… 题解列表 2024年08月01日 1 点赞 0 评论 531 浏览 评分:0.0
对于这个问题,直接用暴力算法,直接求解 摘要:解题思路:注意事项:参考代码:#include<stdlib.h>#include<stdio.h>#include<string.h>#include<math.h>int main(){ i…… 题解列表 2024年07月31日 0 点赞 0 评论 369 浏览 评分:0.0