优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:j=0l=list(map(int,input().split()))t=int(input())z=t+30for h in l: if h<=z: …… 题解列表 2024年07月24日 0 点赞 0 评论 178 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:```cpp #include using namespace std; char str[100]; int kb(int n,int m){ for(int i=m-1;istr[i]…… 题解列表 2024年07月24日 0 点赞 0 评论 157 浏览 评分:0.0
编写题解 1010: [编程入门]利润计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d,f; char s[200]; a=…… 题解列表 2024年07月24日 0 点赞 0 评论 204 浏览 评分:0.0
优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:n=int(input())l=list(map(int,input().split()))l.reverse()print(" ".join(map(str,l)))…… 题解列表 2024年07月25日 0 点赞 0 评论 241 浏览 评分:0.0
【优质解】字符串的大小写转换功能(多函数调用) 摘要:方法一:使用c语言头文件ctype.h库里的tolower函数把字符串大写转换成小写程序结构:自定义三个函数,一个输入字符串,一个处理字符串,一个输出处理之后的字符串,最后再主函数中调用这三个函数参考…… 题解列表 2024年07月25日 0 点赞 0 评论 327 浏览 评分:0.0
优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:n=int(input())li=list(map(int,input().split()))shul=[0]*4for l in li: if 0<=l<=18:…… 题解列表 2024年07月25日 0 点赞 0 评论 361 浏览 评分:0.0
优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:chuan=input()j=0for fu in chuan: if fu.isdigit(): j+=1print(j)…… 题解列表 2024年07月25日 0 点赞 0 评论 630 浏览 评分:0.0
优质题解,回归真神的初始途径 摘要:解题思路:利用字典,统计每个字母出现的次数注意事项:参考代码:word=input()dic={}for le in word: if le in dic: dic[le]+=1 …… 题解列表 2024年07月25日 1 点赞 0 评论 545 浏览 评分:0.0
6行:万花丛中过,片叶不沾身 摘要:解题思路:注意事项:参考代码:word=input()result=""for i in range(len(word)-1): result += chr(ord(word[i])+ord(w…… 题解列表 2024年07月25日 0 点赞 0 评论 553 浏览 评分:0.0
利用数组的方法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<vector>int main() { int m = 0; cin >> …… 题解列表 2024年07月25日 0 点赞 0 评论 183 浏览 评分:0.0