这个哪里错了555怎么都搞不出来我要哭了 摘要:#include<stdio.h>int main(){ int k,i,a[5],s; scanf("%d",&k); a[5]=k/10000; a[4]=k/1000…… 文章列表 2020年09月05日 0 点赞 4 评论 205 浏览 评分:0.0
2020年八月月赛题解五道题(没有思路,只有代码) 摘要:题目1:传送窗题目2:传送窗题目3:传送窗题目4:传送窗题目5:传送窗题目1:#include<bits/stdc++.h>using namespace std;int main(){ int…… 文章列表 2020年09月05日 0 点赞 0 评论 503 浏览 评分:0.0
题目 1128: C语言训练-排序问题<1>(c语言,冒泡排序) 摘要:题目描述 将四个整数进行从小到大的顺序排列,输入 四个整数输出 从小到大输出这四个数样例输入5 3 4 2样例输出2 3 4 5代码如下#include <stdio.h>int main…… 文章列表 2020年09月02日 0 点赞 0 评论 827 浏览 评分:7.7
1491题,答案错误7 摘要:#include <stdio.h> #include <stdlib.h> int main() { int a,b; int i,j,k=0; int t,h; int n…… 文章列表 2020年09月02日 0 点赞 0 评论 315 浏览 评分:0.0
题目 1454: 蓝桥杯历届试题-蚂蚁感冒 摘要:#include<bits/stdc++.h>#include<algorithm>#include<string.h>#include<iostream>#include<cmath>using n…… 文章列表 2020年08月26日 0 点赞 0 评论 423 浏览 评分:9.9
Dev-Cpp(5.9.2)版本使用说明(附安装软件) 摘要:安装软件地址:https://pan.baidu.com/s/1oh7eI1RRBdRU-a_qCSSzdw 提取码:f4kq1,启动点击图标即可。2,使用按住Ctrl+n就OK了3,编译按下F9编译…… 文章列表 2020年08月24日 0 点赞 0 评论 2000 浏览 评分:9.5
数据结构-线性表的单向链表的定义和实现 摘要:#include<iostream> #include<stdlib.h> typedef int Elemtype; using namespace std; typedef stru…… 文章列表 2020年08月21日 0 点赞 0 评论 392 浏览 评分:9.9
数据结构-线性表的顺序表的定义和实现 摘要:#include<iostream> //学习初期 理解难点在于传参是按值传 还是按引用传参 #include<stdlib.h> using namespa…… 文章列表 2020年08月21日 0 点赞 0 评论 466 浏览 评分:9.9
数据结构 简述下列术语:数据,数据元素、数据对象、数据结构、存储结构、数据类型和抽象数据类型 摘要:数据:所有能被输入到计算机中,且能被计算机处理的符号的总称 数据元素:数据中的一个个个体,是数据及结构中讨论的基本单位 数据对象:性质相同数据元素的集合,是数据的一个子集 数据结构:相互之间存在…… 文章列表 2020年08月17日 0 点赞 0 评论 736 浏览 评分:9.7
题目 1113: C语言考试练习题_保留字母 摘要:题目描述编一个程序,输入一个字符串,将组成字符串的所有非英文字母的字符删除后输出。输入一个字符串,长度不超过80个字符输出删掉非英文字母后的字符串。样例输入abc123+xyz.5样例输出abcxyz…… 文章列表 2020年08月17日 0 点赞 0 评论 371 浏览 评分:0.0