通过观察数学规律求解 摘要:## 原理参考其他人的解释 ```java package ___2022年省赛Java大学A组; import java.util.Scanner; public clas…… 题解列表 2023年03月31日 0 点赞 0 评论 467 浏览 评分:2.7
蓝桥杯2025年第十六届省赛真题-小说 摘要:### 解题思路要解决这个问题,我们需要理解小说的情节限制,并寻找出现最多章节的组合。我们需要考虑以下几点:1. **情节类型**: - 情节1: A 发现 B 不知道真相。…… 题解列表 2025年04月19日 0 点赞 1 评论 750 浏览 评分:2.7
蓝桥杯基础练习VIP-数的读法 (C语言代码) 摘要:解题思路: 这题用这个残缺不全的代码能AC我都不敢相信自己的眼睛QWQ注意事项:参考代码:#include <stdio.h> char s[12][5] = {"ling","yi","er"…… 题解列表 2019年01月30日 1 点赞 1 评论 1148 浏览 评分:2.6
压位高精乘法 摘要:解题思路:朴素的高精度乘法是一位一位存数的,而用于存储结果的int(我用的是short)数组中每一个元素显然能存储比9大得多的数,这就造成很多浪费。因而改为每次都进行k位数相乘,最终结果的每一个元素为…… 题解列表 2021年10月16日 0 点赞 0 评论 551 浏览 评分:2.6
鸡尾酒疗法,简单方法 摘要:解题思路:注意事项:用整形数据进行除法是要在前面乘以1.0。将其换成浮点型的数据也是可以的。参考代码:#include<stdio.h>int main(){ int n,i,a,b,x,y; …… 题解列表 2023年01月07日 0 点赞 0 评论 412 浏览 评分:2.6
奶奶个蛋,比赛的时候写的一样,但是肯定不对 摘要:#include using namespace std; #define int long long int n; const int N=1e5+1; struct fly { i…… 题解列表 2023年04月10日 1 点赞 1 评论 1274 浏览 评分:2.6
C++STL ,结构体 来写,简单明了 摘要:#include<iostream> #include<algorithm> #include<string> using namespace std; struct str{ int a…… 题解列表 2023年11月06日 0 点赞 0 评论 190 浏览 评分:2.6
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; int b; while("%d %d",&a,&b)!=EOF) …… 题解列表 2017年08月20日 0 点赞 1 评论 825 浏览 评分:2.5
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b; while(scanf("%d %d",&a,&b) == 2 && a){ print…… 题解列表 2017年08月26日 0 点赞 0 评论 1022 浏览 评分:2.5
C语言程序设计教程(第三版)课后习题9.2 (C++代码) 摘要:解题思路:注意事项:直接设变量取模参考代码:#include<cstdio> #include<stdio.h> int main() { int a,b,c;\\c变量取模 scanf("…… 题解列表 2018年05月06日 8 点赞 1 评论 1246 浏览 评分:2.5