- 博客(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
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人