[编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;long long a…… 题解列表 2022年05月18日 0 点赞 0 评论 205 浏览 评分:0.0
P1087 数组解法 摘要:解题思路:我看好多题解没有严格按照输入标准来hhh 其实利用二维数组可以实现题目要求注意事项:goto语句和break语句的使用参考代码:#include<iostream>using namespa…… 题解列表 2022年05月18日 0 点赞 0 评论 324 浏览 评分:8.0
[编程入门]链表之节点删除 题解(c++风格,简洁明了) 摘要:解题思路:这题就是用了两个结构体,对应删除就可以了。很简单,请大家看看我的程序!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n…… 题解列表 2022年05月17日 0 点赞 0 评论 285 浏览 评分:0.0
傻逼图形输出 摘要:#include<bits/stdc++.h>using namespace std;int main(){ printf( " X | X | X\n" "---+---+---\n" …… 题解列表 2022年05月17日 0 点赞 1 评论 496 浏览 评分:9.9
蓝桥杯算法提高VIP-输入输出格式练习 题解(c++语言) 摘要:解题思路:按题目格式输入输出就可以了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a;double b;char ch;int…… 题解列表 2022年05月17日 0 点赞 0 评论 261 浏览 评分:10.0
题解 1847: 字符串中间和后边*号删除(换一种思路) 摘要:#include<iostream> #include<algorithm> #include<string> using namespace std; int main() { …… 题解列表 2022年05月17日 0 点赞 0 评论 197 浏览 评分:0.0
[编程入门]二维数组的转置 摘要:#include<bits/stdc++.h>using namespace std;long long a[1005][1005];int main(){ for(int i=1;i<=3;i++)…… 题解列表 2022年05月17日 0 点赞 0 评论 492 浏览 评分:9.9
[编程入门]数组插入处理 摘要:#include<bits/stdc++.h>using namespace std;long long a[800000];int main(){ for(int i=1;i<=10;i++) c…… 题解列表 2022年05月17日 0 点赞 1 评论 783 浏览 评分:9.9
三角形——题解 摘要:解题思路:此题一般的迭代解法在遇到较大规模的测试时会需要花费大量时间,从而导致程序通不过,比如我一开始用的如下解法:#include<iostream>#include<vector>using na…… 题解列表 2022年05月17日 0 点赞 0 评论 273 浏览 评分:9.9
[编程入门]选择排序 摘要:解题思路:直接排序注意事项:sort参考代码:#include<bits/stdc++.h>using namespace std;long long a[15];int main(){ fo…… 题解列表 2022年05月17日 0 点赞 0 评论 177 浏览 评分:0.0