2814 (C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a,b,m=0,c=0; scanf("%d",&n); for(int i=0;…… 题解列表 2024年03月19日 0 点赞 0 评论 538 浏览 评分:0.0
Dijskra最短路径 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; const int N=55; int mp[N][N]; int n,…… 题解列表 2024年03月19日 0 点赞 0 评论 522 浏览 评分:9.9
循环遍历(java) 摘要:解题思路: 遍历大于二的整数满足条件则输出注意事项: 变量的有效范围!!(被困二十分钟)参考代码:import java.util.Scanner;public class Main { publ…… 题解列表 2024年03月19日 0 点赞 0 评论 555 浏览 评分:0.0
[编程入门]自定义函数处理素数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i;//接收输入的数循环计数。 scanf("%d",&n);//将整数赋值给N for(i=2;i…… 题解列表 2024年03月19日 0 点赞 0 评论 557 浏览 评分:2.0
java实现日期排序,利用TreeSethhhhhhhh 摘要:解题思路:注意事项:参考代码:import java.math.BigInteger; import java.util.*; public class Main { public …… 题解列表 2024年03月19日 0 点赞 0 评论 579 浏览 评分:0.0
蓝桥杯-回形取数【最容易理解、最笨的方法】 解题思路:设置了h_u,h_d,v_l,v_r四个参数,分别代表水平上边,水平下边,垂直左边,垂直右边当遍历垂直左边的时候,起始位置为h_u,结束位置为n-h_d当遍历水平下边的时候,起始位置为v_l,结束位置为m-v_r当遍历垂直右边的时候, 题解列表 2024年03月19日 0 点赞 0 评论 819 浏览 评分:0.0
单词的长度 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; int f = 0; …… 题解列表 2024年03月19日 0 点赞 0 评论 579 浏览 评分:0.0
【C语言题解/堆栈/表达式求值】 ```#include#include#include#include#defineElemtypeintcharString[100000]={0};//数字栈typedefstructSNode{ElemtypeData[1000];intTop;}*Stack, 题解列表 2024年03月19日 0 点赞 0 评论 683 浏览 评分:0.0
报时助手——基础题目 摘要:解题思路:很简单,分情况讨论即可注意事项:参考代码:h, m = map(int, input().split()) # 时分 M = {0: 'zero', 1: '…… 题解列表 2024年03月19日 0 点赞 0 评论 697 浏览 评分:9.9
2826: 雇佣兵 摘要:参考代码:m, n, x = map(int, input().split()) a = 0 while x > 0: x -= 1 a += n if a >= m… 题解列表 2024年03月19日 0 点赞 0 评论 654 浏览 评分:0.0