2805: 乘方计算 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,n; int mer=1; …… 题解列表 2024年01月10日 0 点赞 0 评论 135 浏览 评分:0.0
[编程入门]三个数最大值 摘要:解题思路:使用qsort函数注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int cmp(const void*a,const void*b){ re…… 题解列表 2024年01月10日 0 点赞 0 评论 160 浏览 评分:0.0
简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,g,s,b; scanf("%d",&i); b=i/100%10; s=i…… 题解列表 2024年01月10日 0 点赞 0 评论 176 浏览 评分: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 评论 161 浏览 评分:0.0
1434: 蓝桥杯历届试题-回文数字 摘要:这个题容易一上来就将所有的五位和六位数循环一遍.但是这样不能得到满分,最多85. 这个方式称为暴力解法: ```python n = int(input()) for i in range(1…… 题解列表 2024年01月10日 0 点赞 0 评论 191 浏览 评分:0.0
编程入门:成绩测定 摘要:解题思路:注意事项:不要忘记“100”这个分数参考代码:#include<stdio.h>int main(){ int grade; scanf("%d",&grade); …… 题解列表 2024年01月10日 0 点赞 0 评论 192 浏览 评分:0.0
c代码记录之破解密码--水题 摘要:int不行,要用long long ```c #include int main() { long long a,b; while(scanf("%lld%lld",&a,…… 题解列表 2024年01月10日 0 点赞 0 评论 153 浏览 评分:0.0
题解 2758: 打印ASCII码(c++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char a; cin>>a; cout<<(int…… 题解列表 2024年01月10日 0 点赞 0 评论 113 浏览 评分: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 评论 94 浏览 评分:0.0
java 编写题解 2912: 最长平台 递归 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2024年01月10日 0 点赞 0 评论 244 浏览 评分:0.0