字符串的查找删除-题解(C++代码)(不知为何检查不多,有没有大佬帮忙解决一下) 摘要:#include <iostream> #include <string> using namespace std; string upper_string(string s) { for …… 题解列表 2022年03月04日 0 点赞 0 评论 555 浏览 评分:0.0
1463: 蓝桥杯基础练习VIP-Sine之舞 C++头疼的递归 摘要:解题思路:递归嵌套,关键只是要看懂题目给出的公式到底是什么东西(给的数据真的很难猜啊)注意事项: A1= sin(1) A2 = sin(1-sin(2)) …… 题解列表 2022年03月04日 0 点赞 0 评论 521 浏览 评分:0.0
题解 2226: 蓝桥杯算法训练-排序(C语言——三目运算符求解) 摘要: #include #include #include int main() { int m,n,k,max,mid,min; scanf("%d %d …… 题解列表 2022年03月04日 0 点赞 0 评论 571 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:a=input()b=[]for i in a: if i>='a' and i<'z'or i>='A' and …… 题解列表 2022年03月04日 0 点赞 0 评论 470 浏览 评分:0.0
递归法求解 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String[] args) {…… 题解列表 2022年03月04日 0 点赞 0 评论 539 浏览 评分:0.0
求和练习(用循环求解) 摘要:注意事项:i要定义成浮点数,否则当i=2时,1/i=0;会对结果造成误差参考代码:#include<stdio.h>int main(){ int a,b,c; float i; d…… 题解列表 2022年03月04日 0 点赞 0 评论 417 浏览 评分:0.0
[编程入门]三个数字的排序 摘要:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a<b&&b<c)printf…… 题解列表 2022年03月04日 0 点赞 0 评论 405 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:注意事项: 一月份要单独考虑参考代码:a=list(map(int,input().split()))b=a[0]c=a[1]d=a[2]sum=0e=[31,29,31,30,31,30,…… 题解列表 2022年03月04日 0 点赞 0 评论 537 浏览 评分:0.0
2022: 合并区间 摘要:解题思路:类似于归并排序的方法注意事项:注意自己设置的变量,决定是否要加=;参考代码:#include<bits/stdc++.h> using namespace std; int main()…… 题解列表 2022年03月05日 0 点赞 0 评论 463 浏览 评分:0.0
编写题解 1246: 第几天 摘要:解题思路:注意事项:参考代码:def isy(st): if st%100==0: if st%400==0: return 1 & 题解列表 2022年03月05日 0 点赞 0 评论 385 浏览 评分:0.0