: 蓝桥杯2022年第十三届省赛真题-刷题统计——C代码(超短) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ long long a,n,sum=0,b,i=1; …… 题解列表 2024年03月10日 0 点赞 0 评论 309 浏览 评分:0.0
数列左右数列排序 摘要:解题思路:数列排序注意事项:数列排序参考代码:import java.util.LinkedList;import java.util.Scanner;public class main {publi…… 题解列表 2024年03月10日 0 点赞 0 评论 302 浏览 评分:0.0
自定义字符类型统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void tongji(char a[1000], int *letter, int *num…… 题解列表 2024年03月10日 0 点赞 0 评论 236 浏览 评分:0.0
位数问题动态规划(java) 摘要:解题思路: 代码使用了动态规划来计算N位数中包含偶数个数字3的数的个数,并将结果对12345取余注意事项:参考代码:import java.util.Scanner; public class …… 题解列表 2024年03月10日 0 点赞 0 评论 330 浏览 评分:0.0
发工资咯(python) 摘要:解题思路:注意事项:参考代码:while True: n, *salaries = list(map(int, input().split())) if n == 0: br…… 题解列表 2024年03月10日 0 点赞 0 评论 298 浏览 评分:0.0
c语言阶乘数列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double i=1; double sum=0.0; for(i=1;i<=30;i+…… 题解列表 2024年03月10日 0 点赞 0 评论 563 浏览 评分:0.0
蓝桥杯2013年第四届真题-错误票据 摘要:这道题需要掌握的是读入方式#include<sstream>如果两个id重号,则必然排序在一起,断号则说明a[i]和a[i-1]之间缺了一个数#include <iostream> #include…… 题解列表 2024年03月10日 0 点赞 0 评论 502 浏览 评分:9.9
编写题解 1347: 八皇后(回溯) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <vector> using namespace std; // 检查当前位置是否可以放置棋子 bo…… 题解列表 2024年03月10日 0 点赞 0 评论 481 浏览 评分:2.0
苹果和虫子 摘要:#include<iostream>using namespace std;int main(){ int n,z,k; double x,y,a; cin>>n>>x>>y; a=y/x; k=0;…… 题解列表 2024年03月10日 0 点赞 0 评论 320 浏览 评分:0.0
1286: 最大配对 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>#include<algorithm>using namespace …… 题解列表 2024年03月10日 1 点赞 0 评论 534 浏览 评分:9.9