1654: 蓝桥杯算法训练VIP-确定元音字母位置(超级简洁)(超级易懂)新手也适合看 摘要: import java.util.*; public class 确定元音字母位置 { public static void main(String[] args) { Scanner…… 题解列表 2023年02月21日 0 点赞 0 评论 468 浏览 评分:9.9
1332: 津津的储蓄计划(python) 摘要:解题思路:注意事项:参考代码:m = 0 x = 0 month = 1 isTrue = True while True: try: n = int(input(…… 题解列表 2023年02月21日 0 点赞 0 评论 696 浏览 评分:9.9
scanf和gets的混合使用 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[1001]; int n; scanf("%d",&n);//scanf结束回车…… 题解列表 2023年02月21日 0 点赞 0 评论 377 浏览 评分:0.0
编写题解 1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split(" ")))b = int(input())b = b+30count = 0for i in range…… 题解列表 2023年02月21日 0 点赞 0 评论 326 浏览 评分:2.0
新手版,简单易懂 摘要:解题思路:循环赋值注意事项:转换类型参考代码: Scanner scanner = new Scanner(System.in); int shuru = scanner.…… 题解列表 2023年02月21日 0 点赞 2 评论 246 浏览 评分:9.9
最最最简单的一种方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3]; int i,j; //int t; for(i=0;i<3;i…… 题解列表 2023年02月21日 0 点赞 0 评论 494 浏览 评分:9.9
不与最大数相同的数字之和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a[100],i,r; int max; int sum=0; scanf("%d",&n); …… 题解列表 2023年02月20日 0 点赞 0 评论 422 浏览 评分:2.7
最大值和最小值的差 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a[10000],i; int max; int min; int difference; sc…… 题解列表 2023年02月20日 0 点赞 0 评论 360 浏览 评分:0.0
蓝桥杯2022年第十三届省赛真题-GCD 摘要:解题思路://考察gcd性质,根据更相减损术可以知道一个等式:gcd(a,b)=gcd(a,b-a) 当然这里的前提时a<=b;//所以gcd(a+k,b+k)=gcd(a+k,b-a) 这里的a…… 题解列表 2023年02月20日 0 点赞 0 评论 1834 浏览 评分:9.9
创建vector数组对n进行分配并搜索 摘要:解题思路:空间换时间,使用创建多个vector存储求完数位和的数,从1开始计算,由于同一数位和的数小的一定在前面,所以直接push_back尾部插入. 插入完成后再用循环对vector的…… 题解列表 2023年02月20日 0 点赞 0 评论 320 浏览 评分:0.0