2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月11日 0 点赞 0 评论 313 浏览 评分:9.9
输出病人正常血压持续的最长时间(python) 摘要:解题思路:思路简单清晰,直接看注释参考代码:n = int(input())blood_pressure_list = [] # 用来存储持续的时间blood_pressure_time = 0 …… 题解列表 2023年12月11日 0 点赞 0 评论 266 浏览 评分:0.0
编写题解 3007: 收费 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a; cin>>a; if…… 题解列表 2023年12月11日 0 点赞 0 评论 236 浏览 评分:9.9
2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月11日 0 点赞 0 评论 403 浏览 评分:9.9
冒泡法轻松解开! 摘要:解题思路:先输入前九个元素,然后输入插入元素,再然后使用冒泡法进行整体排序注意事项:参考代码:#include <stdio.h>int main(){ int arr[10]; for (int a…… 题解列表 2023年12月11日 0 点赞 0 评论 177 浏览 评分:9.9
暴力典中典 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 100001int main(){ char str[N]; gets(str); int len…… 题解列表 2023年12月11日 0 点赞 0 评论 196 浏览 评分:0.0
题解 2821: 开关灯 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[6000];int main() { int n,m; cin>>n>>…… 题解列表 2023年12月11日 0 点赞 0 评论 178 浏览 评分:0.0
津津的储蓄计划 摘要:解题思路:注意事项: 该赋的初值一定要注意赋!参考代码://用标记法 #include<stdio.h> int main() { int i,flag…… 题解列表 2023年12月11日 0 点赞 0 评论 247 浏览 评分:9.9
二次C语言——公约公倍 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m, n,q, t; scanf_s("%d%d", &m, &n); q = m * n; if (m…… 题解列表 2023年12月11日 0 点赞 0 评论 192 浏览 评分:0.0
题解 2909: 直方图 摘要: #include using namespace std; int a,b=0,c,d[20000],e[200000]; int main() { …… 题解列表 2023年12月11日 0 点赞 1 评论 211 浏览 评分:9.9