关键是注意输入缓冲区与输出空行的方法 摘要:解题思路:关键是注意输入缓冲区与输出空行的方法注意事项:参考代码:#include <iostream>#include <cstring>using namespace std;int main…… 题解列表 2022年03月01日 0 点赞 0 评论 414 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换C++ 摘要:#include<iostream>using namespace std;int main() { int n,h,m,s,a; cin >> n; h = n / 3600; …… 题解列表 2022年03月01日 0 点赞 0 评论 253 浏览 评分:9.9
报数问题c语言代码,求交流 摘要:# include <stdio.h> int len; //表示围成圈的总人数 int main(){ scanf("%d", &len); int j = 0, i = …… 题解列表 2022年03月01日 0 点赞 0 评论 296 浏览 评分:9.9
数据结构-链表的基本操作(c++) 摘要:#include <iostream> #include <cstring> #include <string> #include <stdlib.h> using namespace std…… 题解列表 2022年03月01日 0 点赞 0 评论 767 浏览 评分:9.9
直译法简单理解 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main(){ int n,m; int maze[500…… 题解列表 2022年03月01日 0 点赞 0 评论 399 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;void out(string a){ for(int i=0;i<4;i++){ …… 题解列表 2022年03月01日 0 点赞 0 评论 270 浏览 评分:0.0
编写题解 1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;void copy(string a){ for(int…… 题解列表 2022年03月01日 0 点赞 0 评论 256 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:通过代码实现相应情况注意事项:参考代码:#include"iostream"#include<cstring>#include<string>using namespace std;stri…… 题解列表 2022年03月01日 0 点赞 0 评论 334 浏览 评分:0.0
用dp做 思路注释写的很清晰 有需要的可以看一下 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { static int N; static int[] W; …… 题解列表 2022年03月01日 0 点赞 0 评论 1367 浏览 评分:7.7
[编程入门]自定义函数求一元二次方程(易错点) 摘要:解题思路:注意事项:开方使用sqrt函数,要加头文件math.h开方内的值必须为正,若为负,添-号求值公式的分子和分母分别加括号括起来,避免因优先级导致结果错误参考代码:#include<stdio.…… 题解列表 2022年03月01日 0 点赞 0 评论 317 浏览 评分:0.0