虽然简单但是注意的问题多 摘要:解题思路:看到这题,直接数组加for语句,max,min值比较就行注意事项:max,min的定义顺序很重要,你要是直接定义max,min各自=0,代入其他的数(非零的),就错误了。须得把max,min…… 题解列表 2023年01月09日 0 点赞 1 评论 772 浏览 评分:9.9
二级C语言-公约公倍(水题) 摘要:解题思路:注意事项:参考代码#include <stdio.h>int gcd(int x,int y){ int r; r=x%y; do{ x=y; y=r; r=x%y; }while(r…… 题解列表 2023年01月09日 0 点赞 0 评论 342 浏览 评分:9.9
直接提交,不用任何操作 摘要:当你点开这个题目,你就可以提交了。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。…… 题解列表 2023年01月09日 1 点赞 0 评论 519 浏览 评分:9.9
2908: 白细胞计数 摘要:```cpp #include #include #include using namespace std; int main() { int n; float num…… 题解列表 2023年01月09日 0 点赞 1 评论 582 浏览 评分:9.9
2760: 整型与布尔型的转换 摘要:```cpp #include using namespace std; int main() { int a; bool b; cin>>a; b=a…… 题解列表 2023年01月09日 0 点赞 0 评论 708 浏览 评分:9.9
[编程入门]结构体之时间设计 摘要:解题思路:用循环嵌套解决注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] …… 题解列表 2023年01月09日 0 点赞 0 评论 472 浏览 评分:9.9
蓝桥杯算法提高VIP-最大最小值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[10000];int main(){ int n,i,max,min; scanf("%d",&n); …… 题解列表 2023年01月09日 0 点赞 0 评论 276 浏览 评分:0.0
C++ 贪心 + 排序 摘要:```cpp #include using namespace std; #define ll long long namespace test1 { struct tool {…… 题解列表 2023年01月09日 0 点赞 0 评论 381 浏览 评分:9.9
三位数分解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,n,i; scanf("%d",&n); for(i=100;…… 题解列表 2023年01月09日 0 点赞 0 评论 434 浏览 评分:0.0
蓝桥杯算法提高VIP-sign函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int sign(double x){ if(x>0) { return 1; } …… 题解列表 2023年01月09日 0 点赞 0 评论 346 浏览 评分:0.0