1129: C语言训练-排序问题(2) 摘要:```cpp #include using namespace std; int px(int a[]){ for(int i=0;i>a[i]; sort(a,a+10); for…… 题解列表 2024年08月01日 0 点赞 0 评论 199 浏览 评分:0.0
解 2861: 验证子串 摘要:解题思路:注意事项:参考代码:a = input().strip()b = input().strip()if a.find(b) != -1: print(f"{b} is substring…… 题解列表 2024年08月01日 0 点赞 0 评论 531 浏览 评分:0.0
1128: C语言训练-排序问题(1) 摘要:```cpp #include using namespace std; int px(int a[]){ for(int i=0;i>a[i]; sort(a,a+4); for(…… 题解列表 2024年08月01日 0 点赞 0 评论 398 浏览 评分:9.9
2860: 字符串判等 摘要:解题思路:注意事项:参考代码:a = input().strip()b = input().strip()c = a.replace(" ", "")d = b.replace(" ", "")c =…… 题解列表 2024年08月01日 0 点赞 0 评论 574 浏览 评分:0.0
2859: 忽略大小写的字符串比较 摘要:解题思路:注意事项:参考代码:a = input().strip()b = input().strip()c = a.upper()d = b.upper()if c == d: print("…… 题解列表 2024年08月01日 0 点赞 1 评论 298 浏览 评分:4.0
1127: C语言训练-尼科彻斯定理 摘要:```cpp #include using namespace std; int nkcs(int m){ int n=m*m*m,i; printf("%d*%d*%d=%d=",m,…… 题解列表 2024年08月01日 1 点赞 0 评论 216 浏览 评分:0.0
有大佬解释一下为什么过不了所有点吗 摘要:``` n=int(input()) l=list(map(int,input().split())) p=0 while l!=[]: c=min(l) p+=int(l…… 题解列表 2024年08月01日 0 点赞 1 评论 460 浏览 评分:10.0
编写题解 1120: C语言训练-"水仙花数"问题2 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { for (int i = 100; i < 1000; i++) { …… 题解列表 2024年08月01日 0 点赞 0 评论 519 浏览 评分:9.9
解 2858: 整理药名 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): s = input() s = s.lower() if s[0].isalpha…… 题解列表 2024年08月01日 0 点赞 0 评论 660 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:s = input()t = ""for i in s: if ord('a') <= ord(i) <= ord('z'): …… 题解列表 2024年08月01日 0 点赞 0 评论 253 浏览 评分:0.0