题解列表
字符串的查找删除-题解(C++代码)(不知为何检查不多,有没有大佬帮忙解决一下)
摘要:#include <iostream>
#include <string>
using namespace std;
string upper_string(string s) {
for ……
1463: 蓝桥杯基础练习VIP-Sine之舞 C++头疼的递归
摘要:解题思路:递归嵌套,关键只是要看懂题目给出的公式到底是什么东西(给的数据真的很难猜啊)注意事项: A1= sin(1) A2 = sin(1-sin(2)) ……
题解 2226: 蓝桥杯算法训练-排序(C语言——三目运算符求解)
摘要: #include
#include
#include
int main()
{
int m,n,k,max,mid,min;
scanf("%d %d ……
[编程入门]电报加密
摘要:解题思路:注意事项:参考代码:a=input()b=[]for i in a: if i>='a' and i<'z'or i>='A' and ……
求和练习(用循环求解)
摘要:注意事项:i要定义成浮点数,否则当i=2时,1/i=0;会对结果造成误差参考代码:#include<stdio.h>int main(){ int a,b,c; float i; d……
[编程入门]三个数字的排序
摘要:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a<b&&b<c)printf……