2460的不解 总是对了一半 那里不对呢 摘要:#include<iostream> using namespace std; int main() { int n; cin>>n; double a,b,c; …… 文章列表 2022年05月11日 0 点赞 0 评论 375 浏览 评分:0.0
vs的报错解决 摘要:在VS中微软觉得scanf这种函数存在一定的安全因素,所以在编译的时候会出现: error C4996: 'scanf': This function or variable m…… 文章列表 2022年05月17日 0 点赞 0 评论 237 浏览 评分:0.0
在子类中输出父类的成员 摘要:输入 2 3 输出 2 3 #include<iostream> using namespace std; class A { int a; public: A(…… 文章列表 2022年05月24日 0 点赞 0 评论 219 浏览 评分:0.0
约瑟夫环问题 摘要:#include <stdio.h>int main(){ int n,j,i,m=-1; scanf("%d",&n); int a[n]; for(i=1;i<=n;i++…… 文章列表 2022年05月25日 0 点赞 0 评论 215 浏览 评分:0.0
字符数组之字符统计 摘要:#include <stdio.h>void tongji(char a[88]){ int i; int b=0,c=0,d=0,e=0; for(i=0;a[i]!='\0';i+…… 文章列表 2022年05月25日 0 点赞 0 评论 221 浏览 评分:0.0
VC2010安装链接 摘要:#VC2010安装链接 在计算机二级中,如果需要VC2010,请下载文件。 链接:https://pan.baidu.com/s/1M2byIaOLkQdBHTAYJGU8Dg 提取码:xnq…… 文章列表 2022年06月02日 0 点赞 0 评论 278 浏览 评分:0.0
解题之外的东西-python爬虫 摘要:import requests as rimport reimport timedef reponse(url): headers = {'User-Agent': 'M…… 文章列表 2022年06月09日 0 点赞 4 评论 152 浏览 评分:0.0
筛选法求素数(精装版) 摘要:#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 评论 511 浏览 评分:0.0
python爬虫-爬取四级词汇 摘要:仅供参考!!!def requ(n): i=str(n+1) if n!=0: url='https://cet4.koolearn.com/20131106/783…… 文章列表 2022年06月25日 0 点赞 0 评论 428 浏览 评分:0.0
2022年十三届蓝桥杯国赛真题 摘要:在这个网站上已经出了2022年十三届蓝桥杯国赛部分真题,可能大家没有发现,有2022年第十三届蓝桥杯国赛Python组、2022年第十三届蓝桥杯国赛java组、2022年第十三届蓝桥杯国赛C/C++组…… 文章列表 2022年07月01日 0 点赞 0 评论 571 浏览 评分:0.0