1097: 蛇行矩阵 摘要:解题思路:分析每一行数列通式为(n(3+n))/2+1(n(5+n))/2+2(n(7+n))/2+4······3,5,7为等差数列1,2,4为等差数列的前n项和注意事项:参考代码:n=int(in…… 题解列表 2021年03月25日 0 点赞 0 评论 276 浏览 评分:0.0
蓝桥杯算法训练VIP-薪水计算 摘要:```java package blue; import java.util.Scanner; public class Main { public static void…… 题解列表 2021年03月25日 1 点赞 0 评论 355 浏览 评分:9.9
C语言训练-计算1977!* 非常大的大数 只能用数组实现(C++语言) 摘要:解题思路:这个是一个非常大的数,只能用数组来存,不懂的可参考 数组表示大数 [C语言训练]舍罕王的失算--【答案错误】--(C语言代码)--请看正确题解#include<iostream> #…… 题解列表 2021年03月25日 0 点赞 0 评论 591 浏览 评分:9.9
暴力解决法(通俗易懂) 摘要:解题思路:没有用链表 就直接干上去注意事项:参考代码:#include<stdio.h>int main(){ int a[20]; int i; for(i=0;i<20;i++) { scanf…… 题解列表 2021年03月24日 0 点赞 0 评论 396 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{static int t; public static void main(Stri…… 题解列表 2021年03月24日 0 点赞 0 评论 221 浏览 评分:0.0
1429: 蓝桥杯2014年第五届真题-兰顿蚂蚁(Python3)简单模拟 摘要:解题思路:注意事项:参考代码:row, col = map(int, input().split()) map_ = [list(map(int, input().split()))[:col] f…… 题解列表 2021年03月24日 0 点赞 0 评论 269 浏览 评分:9.9
改进了别人的代码,删除的数字不能链表在最后 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct STU { int num; struct STU* next;}li…… 题解列表 2021年03月24日 0 点赞 0 评论 309 浏览 评分:2.0
倒计时25天——报时助手 摘要:参考代码:#include <stdio.h> void read(int x){ int m=0; if(x>20){ m = x%10; x = x-m; } swi…… 题解列表 2021年03月24日 0 点赞 0 评论 172 浏览 评分:0.0
[编程入门]三个数找最大值 (c++) 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; int temp=…… 题解列表 2021年03月24日 0 点赞 0 评论 1103 浏览 评分:9.9
[编程入门]数字的处理与判断 (c++) 摘要:参考代码:#include<iostream>using namespace std;int main(){ int arr[5]; int n; //输入的数 int number = 0;//记录…… 题解列表 2021年03月24日 0 点赞 0 评论 582 浏览 评分:9.9