1063: 二级C语言-统计字符 摘要:```python ss = input() # 英文字母、空格、数字和其它字符 alpha,space,num,other=0,0,0,0 for i in ss: if i.is…… 题解列表 2023年12月20日 0 点赞 0 评论 136 浏览 评分:0.0
1074: 数字整除 摘要:```python n = int(input()) #初始值 while n!=0: #n = 0 时停止 lest = n//10 if (lest-(n%10)…… 题解列表 2023年12月20日 0 点赞 0 评论 123 浏览 评分:0.0
1073: 弟弟的作业 摘要:```python score = 0 while True: try: user = input().split("=") if user[1] =…… 题解列表 2023年12月20日 0 点赞 0 评论 192 浏览 评分:0.0
排序+新设数组 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<cmath>#include<algorithm>#include<cstdio>using namespace …… 题解列表 2023年12月20日 0 点赞 0 评论 136 浏览 评分:0.0
2904: 谁拿了最多奖学金 摘要: #include using namespace std; const int N=110; int g[N],c[N],r[N],sum[N],num=0,t=…… 题解列表 2023年12月20日 0 点赞 0 评论 136 浏览 评分:0.0
题目不难,记住是高精度就好了 摘要:解题思路:注意事项:高精度参考代码:#include<stdio.h>int main(){ long long n,m=0; while(scanf("%lld",&n)!=EOF) {…… 题解列表 2023年12月20日 0 点赞 0 评论 165 浏览 评分:0.0
母牛的故事 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; while(scanf("%d",&n)!=EOF) { int …… 题解列表 2023年12月20日 0 点赞 0 评论 114 浏览 评分:0.0
.................. 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%d",n*(3*n+1)/2)…… 题解列表 2023年12月20日 0 点赞 0 评论 430 浏览 评分:0.0
一遍过题之个人收藏 摘要:#include<stdio.h> void fun(int a[100],int m,int n,int b[100]){ int l=0; for(int k=n-m;k<n…… 题解列表 2023年12月20日 0 点赞 0 评论 94 浏览 评分:0.0
自定义函数对素数进行查找 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void sushu(int i);int main(){ int n; scanf("%d",&n); int i; for(i=2;…… 题解列表 2023年12月20日 0 点赞 0 评论 115 浏览 评分:0.0