文章列表
请问我这个为什么会运行错误?
摘要:#include<iostream>#include<string>#include<map>#include<algorithm>using namespace std;bool comp(int ……
这个哪里错了555怎么都搞不出来我要哭了
摘要:#include<stdio.h>int main(){ int k,i,a[5],s; scanf("%d",&k); a[5]=k/10000; a[4]=k/1000……
2020年八月月赛题解五道题(没有思路,只有代码)
摘要:题目1:传送窗题目2:传送窗题目3:传送窗题目4:传送窗题目5:传送窗题目1:#include<bits/stdc++.h>using namespace std;int main(){ int……
题目 1128: C语言训练-排序问题<1>(c语言,冒泡排序)
摘要:题目描述
将四个整数进行从小到大的顺序排列,输入
四个整数输出
从小到大输出这四个数样例输入5 3 4 2样例输出2 3 4 5代码如下#include <stdio.h>int main……
1491题,答案错误7
摘要:#include <stdio.h>
#include <stdlib.h>
int main() {
int a,b;
int i,j,k=0;
int t,h;
int n……
题目 1454: 蓝桥杯历届试题-蚂蚁感冒
摘要:#include<bits/stdc++.h>#include<algorithm>#include<string.h>#include<iostream>#include<cmath>using n……
Dev-Cpp(5.9.2)版本使用说明(附安装软件)
摘要:安装软件地址:https://pan.baidu.com/s/1oh7eI1RRBdRU-a_qCSSzdw 提取码:f4kq1,启动点击图标即可。2,使用按住Ctrl+n就OK了3,编译按下F9编译……
数据结构-线性表的单向链表的定义和实现
摘要:#include<iostream>
#include<stdlib.h>
typedef int Elemtype;
using namespace std;
typedef stru……
数据结构-线性表的顺序表的定义和实现
摘要:#include<iostream> //学习初期 理解难点在于传参是按值传 还是按引用传参
#include<stdlib.h>
using namespa……