自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (2)
  • 收藏
  • 关注

原创 火 车 票 管 理 系 统

#include <iostream> #include <fstream> #include <string> #include<time.h> using namespace std; void welcome(); //欢迎 void choose(); ...

2018-08-31 21:39:18 3848 3

原创 图书管理系统

#include <stdio.h> #include <stdlib.h> #include <time.h> #include <string.h> #include<conio.h> typedef int BOOL; typedef struct bookinfo { char number[15];/*产品编号*/ char...

2018-05-20 12:48:53 339

原创 C++ 链表栈及常用函数实现

#include<iostream> using namespace std; typedef struct Node { int data; struct Node* next; }Node; typedef struct Stack { Node* top; Node* head; }Stack; void init(Stack &S); void push(Sta...

2018-03-23 19:44:34 1048 1

原创 打字小游戏(天降字母)Visual Studio+EasyX

  #include <graphics.h> #include <conio.h> #include <time.h> #include<stdio.h> #include<string.h> #include<stdlib.h> #include<windows.h> #pragma comment(l

2017-12-27 20:37:16 4544

原创 [C语言入门题] 八皇后问题

#include   int ok(int k);  void p(int i); int x[8];  int a; int sum; int main() {     //int a;     while (scanf("%d", &a) != EOF)     {         sum = 0;         p(0);               } }

2017-12-13 20:33:01 1257

原创 [C语言入门题]1~n全排列

题目描述 大家高中都学过全排列。例如,1,2,3三个数进行全排列,其结果为(1,2,3)(1,3,2)(2,1,3)(2,3,1)(3,1,2)(3,2,1)。现在,给你数字n,请你列出数1,2,3...,n的全排列。输出顺序应该按照字典序输出。即对于两个排列,先比较第一位,第一位小的排前面,如果相等,再比较第二位,以此类推。例:(1,2,3)排在(1,3,2)前面。

2017-12-10 00:44:00 4632

原创 [C语言入门题]小孟逆序作文

题目描述 小孟写作文很奇怪,每个单词都是逆序的。请你帮他翻译。 输入 以#表示小孟作文开始,随后是其作文,随后#表示作文结束。 输出 翻译之后的作文。 样例输入 # !dlrow olleh # # gnem oaix # 样例输出 world! hello meng xiao 提示

2017-11-22 12:46:55 1410

打字小游戏

打字小游戏:天降字母,有画键盘,按下键可以在键盘上显示

2018-08-31

图书管理系统

printf("\t\t\t图书管理系统\n"); printf("\t\t\t1:新进图书基本信息的输入\n"); printf("\t\t\t2:显示全部记录\n"); printf("\t\t\t3:根据图书名称查询图书基本信息\n"); printf("\t\t\t4:根据图书名称对撤销的图书信息进行删除\n"); printf("\t\t\t5:按照出版社名称查询图书基本信息\n"); printf("\t\t\t6:根据作者名称查询图书基本信息\n"); printf("\t\t\t7:列出所有未借出去的图书信息\n"); printf("\t\t\t8:组合查询图书基本信息\n"); printf("\t\t\ta:借书\n"); printf("\t\t\tb:还书\n"); printf("\t\t\tt:退出\n");

2018-08-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除