摘要: 题目:五星填数如【图1.png】的五星图案节点填上数字:1~12,除去7和11。要求每条直线上数字和相等。如图就是恰当的填法。请你利用计算机搜索所有可能的填法有多少种。注意:旋转或镜像后相同的算同一种填法。请提交... 阅读全文
posted @ 2018-03-31 23:06 IT蓝月 阅读(198) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std; void printArray(int array[],int length) { for (int i = 0; i < length; ... 阅读全文
posted @ 2018-03-31 09:16 IT蓝月 阅读(247) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int n;void lan(int a[],int size){ for(int i = 0;i > n; int a[n]; for(int i =... 阅读全文
posted @ 2018-03-31 09:15 IT蓝月 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 标题:分机号X老板脾气古怪,他们公司的电话分机号都是3位数,老板规定,所有号码必须是降序排列,且不能有重复的数位。比如:751,520,321 都满足要求,而,766,918,201 就不符合要求。现在请你计算一... 阅读全文
posted @ 2018-03-31 08:43 IT蓝月 阅读(115) 评论(0) 推荐(0) 编辑
摘要: #include#define N 8int main() { int a[N][N]; int i,j; for(i=0; i<N; i++) { a[i][0] = 1; a[i][i] = 1; } f... 阅读全文
posted @ 2018-03-31 08:32 IT蓝月 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 题目:报纸页数X星球日报和我们地球的城市早报是一样的,都是一些单独的纸张叠在一起而已。每张纸印有4版。比如,某张报纸包含的4页是:5,6,11,12,可以确定它应该是最上边的第2张报纸。我们在太空中捡到了一张X星... 阅读全文
posted @ 2018-03-30 18:27 IT蓝月 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 区块链到底是什么?百度百度百科说: 区块链是分布式数据存储、点对点传输、共识机制、加密算法等计算机技术的新型应... 阅读全文
posted @ 2018-03-30 09:12 IT蓝月 阅读(194) 评论(0) 推荐(0) 编辑
摘要: #include#include#include #define M 100struct score //学生成绩信息结构体定义 { int ... 阅读全文
posted @ 2018-03-29 18:22 IT蓝月 阅读(148) 评论(0) 推荐(0) 编辑
摘要: #include#include#includetypedef struct Node { int data; Node *next;}node;typedef struct SeqQueue { Node* ... 阅读全文
posted @ 2018-03-29 18:19 IT蓝月 阅读(81) 评论(0) 推荐(0) 编辑
摘要: #include#includestruct Node { int data; Node *next;};struct Queue { Node* head; Node* rear;};Queue* creat... 阅读全文
posted @ 2018-03-29 18:17 IT蓝月 阅读(84) 评论(0) 推荐(0) 编辑
Live2D