精品文章 《数组排序》续集——既万能,又难写的快速排序 摘要:我在之前写过一篇关于数组排序的四种方法的文章(未看过的朋友可以翻一下前面的文章,叫做《数组排序的四种方法》),对于广大的编程学生来说,这些足矣。但是这些排序各有各的缺点(选择排序除外),于是,今天我来…… 文章列表 2022年06月30日 0 点赞 0 评论 533 浏览 评分:7.3
python爬虫-爬取四级词汇 摘要:仅供参考!!!def requ(n): i=str(n+1) if n!=0: url='https://cet4.koolearn.com/20131106/783…… 文章列表 2022年06月25日 0 点赞 0 评论 527 浏览 评分:0.0
1002:怎样求三个数的最大值 摘要:先看题:题目让我们编一个输入三个数,然后输出三个数最大值的程序#include<iostream> //控制输入输出的头文件using namespace std; //命名空间int mai…… 文章列表 2022年06月25日 0 点赞 0 评论 285 浏览 评分:8.0
字符串反序输出 摘要:颇为粗糙 ```c #include #define N 100 void fun(char *p){ int flag = 0,i = 0; while (p[…… 文章列表 2022年06月20日 0 点赞 2 评论 247 浏览 评分:9.0
小组题目便捷添加程序 摘要:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ int j; int i; int n; scanf("%d%d…… 文章列表 2022年06月20日 0 点赞 2 评论 178 浏览 评分:9.9
1001:怎么输出" Hello,World" 摘要:先看题:要求输出" Hello,World"这句话首先,输出需要包含输出头文件:#include<iostream> //然后是c++必须要带的命名空间(c语言可以省略不写):using names…… 文章列表 2022年06月18日 0 点赞 2 评论 566 浏览 评分:9.9
大连交通大学五年制C语言试卷七 考试笔记 摘要:下列程序段的输出结果为( )。 --->85.7%float k=0.8567;printf("%4.1f%%",k*100); 注:4.1表示保留四位,小数一位,小数点也算一位,%%表示输出一…… 文章列表 2022年06月17日 0 点赞 0 评论 334 浏览 评分:9.9
筛选法求素数(精装版) 摘要:#include <stdio.h> int main() { int i,j; for(i=2;i<=100;i++) { for(j=2;j<i;j++)…… 文章列表 2022年06月12日 0 点赞 0 评论 606 浏览 评分:0.0
解题之外的东西-python爬虫 摘要:import requests as rimport reimport timedef reponse(url): headers = {'User-Agent': 'M…… 文章列表 2022年06月09日 0 点赞 4 评论 233 浏览 评分:0.0
VC2010安装链接 摘要:#VC2010安装链接 在计算机二级中,如果需要VC2010,请下载文件。 链接:https://pan.baidu.com/s/1M2byIaOLkQdBHTAYJGU8Dg 提取码:xnq…… 文章列表 2022年06月02日 0 点赞 0 评论 364 浏览 评分:0.0