
c语言
CodeHarry
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
编写一个嵌套循环的程序,让用户输入一个值,指出要显示多少行。让程序以这样的形式显示星号
#include<iostream>#include<string>#include<array>using namespace std;int main(){ int a, c = 5, d = 0; cout << "请输入要显示多少行:____\b\b\b\b"; cin >> a; for(int b=0...原创 2020-04-12 18:56:00 · 659 阅读 · 0 评论 -
c语言小游戏 扫雷(dev c++)
#ifndef __GAME__H__#define __GAME__H__#include<stdio.h>#include<time.h>#include<stdlib.h>#define ROWS 11#define COLS 11 #define ROW 9#define COL 9#define count 10//初始化雷阵v...原创 2020-04-01 14:24:00 · 4897 阅读 · 3 评论