题解列表
1479: 蓝桥杯算法提高VIP-删除数组中的0元素
摘要:解题思路:注意事项:参考代码:n=int(input())
ls=list(map(int,input().split()))
while 0 in ls:
ls.remove(0)
……
1483: 蓝桥杯算法提高VIP-数组替换
摘要:解题思路:注意事项:参考代码:m,n=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input(……
敲七游戏(暴力求解,简单明了)
摘要:解题思路:注意事项:参考代码:#include<vector>#include<iostream>#include<string>#include<algorithm>#include<cmath>#……
1468: 蓝桥杯基础练习VIP-报时助手
摘要:解题思路:注意事项:参考代码:h,m=map(int,input().split())
d={0:'zero', 1: 'one', 2:'two……
Hifipsysta-1142题-C语言训练-立方和不等式(C++代码)
摘要:
```cpp
#include
#include
#include
using namespace std;
int triple(int m){
return pow……
Hifipsysta-1144-C语言训练-自守数问题(C++)字符串匹配法
摘要:
```cpp
#include
#include
#include
#include
using namespace std;
bool is_self_hold(long n){……
Hifipsysta-1145-C语言训练-自由落体问题(C++代码)
摘要:```cpp
#include
#include
using namespace std;
double journey(double t){
double result;
……
Hifipsysta-1112-C语言考试练习题_一元二次方程(C++代码)求根公式法
摘要:
```cpp
#include
#include
using namespace std;
int main(){
double a,b,c,result;
cin……
Hifipsysta-1140-C语言训练-求车速(C++代码)字符串转换法
摘要:```cpp
#include
#include
using namespace std;
bool is_symmetry(int n){
bool flag = false;……