摘要: #include#includetypedef struct Node{ int data; struct Node* pnext;}node;typedef struct Stack{ node* top;}s... 阅读全文
posted @ 2018-03-29 18:16 IT蓝月 阅读(98) 评论(0) 推荐(0) 编辑
摘要: #include"stdio.h"#include"windows.h"#include"conio.h"#define M 3#define row 20int m[row][row];int n[M][M] ... 阅读全文
posted @ 2018-03-29 18:15 IT蓝月 阅读(201) 评论(0) 推荐(0) 编辑
摘要: #include#include#define num 8struct nearnode{ int order; nearnode* pnext;};struct topnode{ char data[20]... 阅读全文
posted @ 2018-03-29 18:12 IT蓝月 阅读(383) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;DWORD WINAPI lan(void* p){ while(1){ cout<<"次线程运行中\n"<... 阅读全文
posted @ 2018-03-29 18:11 IT蓝月 阅读(81) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#includetypedef struct student{ char name[10]; int num; int score; struct student*... 阅读全文
posted @ 2018-03-29 18:10 IT蓝月 阅读(241) 评论(0) 推荐(0) 编辑
摘要: /*亲测DEVC++编译器完美执行*/#define _CRT_SECURE_NO_WARNINGS#include#include#include#includevoid readini(FILE **fphe... 阅读全文
posted @ 2018-03-29 18:08 IT蓝月 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 题目:九宫幻方 小明最近在教邻居家的小朋友小学奥数,而最近正好讲述到了三阶幻方这个部分,三阶幻方指的是将1~9不重复的填入一个3*3的矩阵当中,使得每一行、每一列和每一条对角线的和都是相同的。 三阶... 阅读全文
posted @ 2018-03-28 12:29 IT蓝月 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 题目:Excel地址Excel单元格的地址表示很有趣,它使用字母来表示列号。比如,A表示第1列,B表示第2列,Z表示第26列,AA表示第27列,AB表示第28列,BA表示第53列,....当然Excel的最大列号... 阅读全文
posted @ 2018-03-26 13:38 IT蓝月 阅读(365) 评论(0) 推荐(1) 编辑
摘要: 题目:杨辉三角也叫帕斯卡三角,在很多数量关系中可以看到,十分重要。第0行: 1第1行: 1 1第2行: 1 2 1第3行: 1 3 3 1第4行... 阅读全文
posted @ 2018-03-25 09:42 IT蓝月 阅读(351) 评论(0) 推荐(1) 编辑
摘要: 题目:算式900小明的作业本上有道思考题: 看下面的算式: (□□□□-□□□□)*□□=900 其中的小方块代表0~9的数字,这10个方块刚好包含了0~9中的所有数字。 注意:0不能作为某个数字的首位。... 阅读全文
posted @ 2018-03-24 23:22 IT蓝月 阅读(323) 评论(0) 推荐(0) 编辑
Live2D