1054: 二级C语言-计算素数和 摘要:```python m,n = map(int,input().split()) if m > n: m,n = n,m #题中要求 m…… 题解列表 2023年12月20日 0 点赞 0 评论 248 浏览 评分:0.0
1061: 二级C语言-计负均正 摘要:```python li = list(map(int,input().split())) li1 = list(map(int,input().split())) #题中示例是两行输入 li…… 题解列表 2023年12月20日 2 点赞 1 评论 230 浏览 评分:0.0
1062: 二级C语言-公约公倍 摘要:```python c=list(map(int,input().split())) if(len(c))…… 题解列表 2023年12月20日 1 点赞 0 评论 289 浏览 评分:0.0
[编程入门]自定义函数之字符提取(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],n,i; scanf("%s",a); …… 题解列表 2023年12月20日 0 点赞 0 评论 202 浏览 评分:0.0
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 评论 205 浏览 评分:0.0
1074: 数字整除 摘要:```python n = int(input()) #初始值 while n!=0: #n = 0 时停止 lest = n//10 if (lest-(n%10)…… 题解列表 2023年12月20日 0 点赞 0 评论 169 浏览 评分:0.0
1073: 弟弟的作业 摘要:```python score = 0 while True: try: user = input().split("=") if user[1] =…… 题解列表 2023年12月20日 1 点赞 0 评论 270 浏览 评分:0.0
排序+新设数组 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<cmath>#include<algorithm>#include<cstdio>using namespace …… 题解列表 2023年12月20日 0 点赞 0 评论 204 浏览 评分: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 评论 218 浏览 评分:0.0
题目不难,记住是高精度就好了 摘要:解题思路:注意事项:高精度参考代码:#include<stdio.h>int main(){ long long n,m=0; while(scanf("%lld",&n)!=EOF) {…… 题解列表 2023年12月20日 0 点赞 0 评论 252 浏览 评分:0.0