关于我发表文章的规律 摘要:最近因为临近期末,学习压力较大,下面我规定一下我发表文章的时间,想看我文章的小伙伴可以记一下时间。从下周起,我一般在周五、周六、周日这几天发表1~2篇文章。在法定假日期间,我可能会发一定数量的文章(根…… 文章列表 2022年05月15日 0 点赞 0 评论 280 浏览 评分:2.0
2022程序设计小能手比赛题目讲解(1) 摘要:前天刚参加完2022程序设计小能手比赛,今天来讲解一下其中的第一道题目。题目名为“阶梯电量”,分值60。题目描述:(可能不怎么清楚,因为我还没拿到WPS原版)我当时看到这道题一开始觉得很简单:不就是判…… 文章列表 2022年05月15日 0 点赞 1 评论 1429 浏览 评分:9.3
下面的程序将一个普通函数作为类的友元函数,求坐标点之和 摘要:输入1 2 1输出2,2,4#include<iostream>using namespace std;class point{ int X; int Y;public: static int Cou…… 文章列表 2022年05月17日 0 点赞 0 评论 334 浏览 评分:9.0
vs的报错解决 摘要:在VS中微软觉得scanf这种函数存在一定的安全因素,所以在编译的时候会出现: error C4996: 'scanf': This function or variable m…… 文章列表 2022年05月17日 0 点赞 0 评论 277 浏览 评分:0.0
c++自创游戏(跑酷) 摘要:#include<bits/stdc++.h> #include<windows.h>#include<stdio.h>#include<conio.h>#include<time.h>#define…… 文章列表 2022年05月18日 0 点赞 5 评论 290 浏览 评分:6.8
在矩阵中寻找绝对值最大的数并输出行下标、列下标 摘要:解题思路:可以使用类似冒泡排序的方法定位最大值下标#include#includeint main(){ int i,j,minh,minl,n,a[80][80]; scanf("%…… 文章列表 2022年05月19日 0 点赞 0 评论 295 浏览 评分:9.9
c++小游戏(坦克大战)库存都发出来了 摘要:#include<bits/stdc++.h> #include <stdio.h>#include <windows.h>#include <time.h> …… 文章列表 2022年05月20日 0 点赞 0 评论 499 浏览 评分:7.8
c++小游戏(坦克大战)库存都发出来了改进版 摘要:#include<bits/stdc++.h> #include <stdio.h>#include <windows.h>#include <time.h> …… 文章列表 2022年05月20日 0 点赞 0 评论 861 浏览 评分:7.3
网络情人节到了,表白代码 摘要:#include<cstdio>#include<windows.h>#include<cstring>#include<iostream>#include<string>#include<cmath…… 文章列表 2022年05月20日 0 点赞 0 评论 295 浏览 评分:9.9
库存贪吃蛇c++程序 摘要:#include<iostream>#include<windows.h>#include<time.h>#include<conio.h>using namespace std;// 刷新当前屏幕i…… 文章列表 2022年05月20日 0 点赞 0 评论 342 浏览 评分:9.9