题解列表

筛选

虽然简单但是注意的问题多

摘要:解题思路:看到这题,直接数组加for语句,max,min值比较就行注意事项:max,min的定义顺序很重要,你要是直接定义max,min各自=0,代入其他的数(非零的),就错误了。须得把max,min……

直接提交,不用任何操作

摘要:当你点开这个题目,你就可以提交了。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。……

2908: 白细胞计数

摘要:```cpp #include #include #include using namespace std; int main() { int n; float num……

C++ 贪心 + 排序

摘要:```cpp #include using namespace std; #define ll long long namespace test1 { struct tool {……

三位数分解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){      int a,b,c,n,i;      scanf("%d",&n);      for(i=100;……

蓝桥杯算法提高VIP-sign函数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int sign(double x){      if(x>0)      {            return 1;      } ……