java 编写题解 2912: 最长平台 递归 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2024年01月10日 0 点赞 0 评论 286 浏览 评分:0.0
题解 2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,sum=0,summ=0,summm=0…… 题解列表 2024年01月10日 0 点赞 0 评论 138 浏览 评分:0.0
题解 2758: 打印ASCII码(c++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char a; cin>>a; cout<<(int…… 题解列表 2024年01月10日 0 点赞 0 评论 160 浏览 评分:0.0
整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int maxx = 0, minn = INT_MA…… 题解列表 2024年01月10日 0 点赞 1 评论 150 浏览 评分:2.0
c代码记录之破解密码--水题 摘要:int不行,要用long long ```c #include int main() { long long a,b; while(scanf("%lld%lld",&a,…… 题解列表 2024年01月10日 0 点赞 0 评论 191 浏览 评分:0.0
题解 2798整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,maxx=0,minn=INT_MAX;…… 题解列表 2024年01月10日 0 点赞 0 评论 260 浏览 评分:9.9
编程入门:成绩测定 摘要:解题思路:注意事项:不要忘记“100”这个分数参考代码:#include<stdio.h>int main(){ int grade; scanf("%d",&grade); …… 题解列表 2024年01月10日 0 点赞 0 评论 230 浏览 评分:0.0
题解 2797 最高的分数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx=0 , n; cin>>n…… 题解列表 2024年01月10日 0 点赞 0 评论 213 浏览 评分:9.9
1434: 蓝桥杯历届试题-回文数字 摘要:这个题容易一上来就将所有的五位和六位数循环一遍.但是这样不能得到满分,最多85. 这个方式称为暴力解法: ```python n = int(input()) for i in range(1…… 题解列表 2024年01月10日 0 点赞 0 评论 231 浏览 评分:0.0
1470: 蓝桥杯基础练习VIP-时间转换 摘要:解题思路:除法注意事项:参考代码:n = int(input())h = n // 3600m = n % 3600 // 60s = n % 3600 % 60print(f"{h}:{m}:{s}…… 题解列表 2024年01月10日 0 点赞 0 评论 202 浏览 评分:0.0