摘要: N(需求) 我们所做的“八分音符”声控小游戏适用于各年龄段的人,单一的触控游戏难免让人感到乏味,声控类游戏锻炼口脑并用,是名副其实的益智游戏,小孩子可以锻炼反应能力,对已经工作的大人们也可以起到减压作用。 A(做法) 现在不管是手机的APP游戏或者是PC端游戏大部分都是触控游戏,都是通过手指和鼠标的 阅读全文
posted @ 2018-11-13 21:09 PeanuTnT 阅读(122) 评论(0) 推荐(0)
摘要: 题目;使二柱子的四则运算实现在线答题的功能,并且可以判断对错。并生成错题本保存起来。 代码; #include "stdafx.h"#include <stdlib.h>#include <stdio.h>#include <conio.h>#include <time.h>int main(){ 阅读全文
posted @ 2018-11-06 18:52 PeanuTnT 阅读(149) 评论(0) 推荐(0)
摘要: #include<iostream>#define N 1000using namespace std;int Compare(int Group[], int Length){ int MaxSum[N][2]; MaxSum[0][0] = MaxSum[0][1] = Group[0]; fo 阅读全文
posted @ 2018-11-04 18:22 PeanuTnT 阅读(116) 评论(0) 推荐(0)
摘要: #include<iostream>using namespace std; int Max(int n, int a[], int *smark, int *mmark){ int b[100] = { 0 }; int i, sum1 = 0, max1 = 0; for (i = 0; i<n 阅读全文
posted @ 2018-10-21 19:35 PeanuTnT 阅读(91) 评论(0) 推荐(0)
摘要: #include<iostream>#include<time.h>#include<conio.h>#define N 1000using namespace std;void RandIn(int IntNum,int A[]) //随机生成数组{ cout<<"整数内容"<<endl; for 阅读全文
posted @ 2018-10-14 19:43 PeanuTnT 阅读(98) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h>#include <string.h>#include <time.h> #include <conio.h>#include <math.h> int cnt1, cnt2; int gcd(int a, int b) { 阅读全文
posted @ 2018-10-11 19:01 PeanuTnT 阅读(142) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h>#include <time.h>int main() { int i; int num1, num2; int op,result, score=0; char oper[]={'+','-','*','/'}; srand 阅读全文
posted @ 2018-10-08 18:47 PeanuTnT 阅读(108) 评论(0) 推荐(0)
摘要: 测绘工程虽说是个小专业,但是它并不简单。作为一名已经步入大三的测绘工程系学生,我能很明确的告诉大家,在二十一世纪,新兴的测绘工程绝不只是需要繁重的体力劳动,各种有关测绘工程软件的熟练应用会成为你很大的助力。 顾明思义,测绘工程就是测量加绘图。测量这项工作需要在业外完成,测绘人可根据测绘专属的仪器,如 阅读全文
posted @ 2018-09-27 19:01 PeanuTnT 阅读(200) 评论(0) 推荐(0)