T1006答案解答 摘要:解题思路:使用三木运算符注意事项:* 三目运算符:a > b ? c : d* 当 a > b 为真,执行c ,否则执行d参考代码:#include<stdio.h>int main(){ in…… 题解列表 2022年02月28日 0 点赞 0 评论 573 浏览 评分:2.0
分段函数求值 摘要:解题思路:基础的if else 条件语句逻辑和逻辑与运算符的使用注意事项:注意逻辑与运算符是&&,不要写成了位与运算参考代码:#include<stdio.h>int fun(int data);in…… 题解列表 2022年02月28日 0 点赞 0 评论 696 浏览 评分:0.0
python-种树(递归) 摘要:解题思路:递归。注意事项:参考代码:def dfs(x,cnt,now): global n,m,A,vis,ans if cnt == m: …… 题解列表 2022年02月28日 0 点赞 0 评论 772 浏览 评分:9.9
2080: 蓝桥杯基础练习-十六进制转八进制(JAVA) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Test { public static void main(String[] …… 题解列表 2022年02月28日 0 点赞 0 评论 612 浏览 评分:0.0
2082: 蓝桥杯基础练习-十六进制转十进制(JAVA) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Test { public static void main(Strin…… 题解列表 2022年02月28日 0 点赞 0 评论 524 浏览 评分:0.0
2083: 蓝桥杯基础练习-十进制转十六进制 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Test { public static void main(Strin…… 题解列表 2022年02月28日 0 点赞 0 评论 543 浏览 评分:0.0
hhhhhhhhhhhhhhhh谢谢你 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ bool flag = 0; int n; cin >> n; int…… 题解列表 2022年02月28日 0 点赞 0 评论 579 浏览 评分:9.9
蓝桥杯2020年第十一届省赛真题-整除序列(c语言) 摘要:解题思路:注意事项: 对于新手而言这里有个很大的误区,按照题目的输入要求,必须使用long long型的变量输入,而输入和输入的时候是%lld,很容易写成%d参考代码:#include<stdio.h…… 题解列表 2022年02月28日 0 点赞 0 评论 1227 浏览 评分:9.7
核电站问题 解题思路:就算是抄袭也要光明正大的抄袭,https://blog.csdn.net/zujiasheng/article/details/80357144?自己看吧!注意事项:参考代码:#include#includeintmain(){intm, 题解列表 2022年02月28日 0 点赞 0 评论 696 浏览 评分:0.0
dfs 1117: K-进制数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int ans; int n, k; void dfs(int x, int cn…… 题解列表 2022年02月27日 0 点赞 0 评论 679 浏览 评分:9.9