自定义博客皮肤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)
  • 收藏
  • 关注

原创 RPG角色生成器

#include “iostream”#include #include “string”#include “ctime”#include “fstream”using namespace std;int occupation_choice; //玩家所选择的职业的序号class Bwj //基础类,保存角色的姓名,性别{public:void ...

2018-10-08 13:54:04 210

原创 24点游戏

#include<stdio.h>#include<math.h>#include<conio.h>#include<string.h>#include <stdlib.h>#include <time.h> //用到了time函数void byy(int type,int ...

2018-09-27 21:56:52 143

原创 词频统计助手

#include #include #define N 50typedef struct BiTNode //定义结构体{char data[N];int count;struct BiTNode *lChild; //左子树struct BiT...

2018-09-21 20:57:20 205

原创 求两个正整数的最大公约数和最小公倍数

#include <iostream>using namespace std;//利用连续整数检测法求最大公约数int bk(int m, int n) //定义bk函数{ int a; if (m<n) a=m; else a=n; ...

2018-09-08 15:31:15 440

原创 单词小助手

问题描述: 要求完成以下任务: 1.改写程序为良好程序风格(文档注释,函数注释,语句注释)。 2.将单词测试中的功能完善,可针对做错的单词重复记忆。 3.查询单词的功能添加英文词查询,中文查询的功能完善(考虑如何显示同样中文意义,不同的英文单词) //英语单词小助手 //版本:v1.1 //创建时间: //主要功能: //**************************...

2018-09-08 15:11:27 193

原创 求两个正整数的最大公约数和最小公倍数

include using namespace std;//利用连续整数检测法求最大公约数 int bk(int m, int n) //定义bk函数 { int a; if (m

2018-09-05 23:21:11 94

原创 三天打鱼两天晒网

include using namespace std;typedef struct DAYS { int year; int month; int day; }days; //days是一个结构体类型=struct DAYSint Days(int year,int month,int day) ...

2018-08-30 14:38:07 170

空空如也

空空如也

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

TA关注的人

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