1434: 蓝桥杯历届试题-回文数字 摘要:这个题容易一上来就将所有的五位和六位数循环一遍.但是这样不能得到满分,最多85. 这个方式称为暴力解法: ```python n = int(input()) for i in range(1…… 题解列表 2024年01月10日 0 点赞 0 评论 234 浏览 评分:0.0
题解 2797 最高的分数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx=0 , n; cin>>n…… 题解列表 2024年01月10日 0 点赞 0 评论 214 浏览 评分:9.9
编程入门:成绩测定 摘要:解题思路:注意事项:不要忘记“100”这个分数参考代码:#include<stdio.h>int main(){ int grade; scanf("%d",&grade); …… 题解列表 2024年01月10日 0 点赞 0 评论 236 浏览 评分:0.0
题解 2798整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,maxx=0,minn=INT_MAX;…… 题解列表 2024年01月10日 0 点赞 0 评论 263 浏览 评分:9.9
c代码记录之破解密码--水题 摘要:int不行,要用long long ```c #include int main() { long long a,b; while(scanf("%lld%lld",&a,…… 题解列表 2024年01月10日 0 点赞 0 评论 193 浏览 评分:0.0
整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int maxx = 0, minn = INT_MA…… 题解列表 2024年01月10日 0 点赞 1 评论 156 浏览 评分:2.0
题解 2758: 打印ASCII码(c++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char a; cin>>a; cout<<(int…… 题解列表 2024年01月10日 0 点赞 0 评论 162 浏览 评分: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 评论 143 浏览 评分:0.0
java 编写题解 2912: 最长平台 递归 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2024年01月10日 0 点赞 0 评论 292 浏览 评分:0.0
写题解 2801: 奇数求和 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b,sum=0; cin>>a>>b; …… 题解列表 2024年01月10日 0 点赞 0 评论 133 浏览 评分:0.0