首先呢,下载一个visual studio 2017的编辑器工具,可能有最新的2019年的版本,根据自己喜欢选择哪个版本就好了 visual studio IDE下载地址:https://visualstudio.microsoft.com/zh-hans/ 有社区版,企业版,专业版,一般来说个人的 ...
分类:
编程语言 时间:
2019-04-09 00:44:55
阅读次数:
1732
// 学校演讲比赛.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include "pch.h" #include #include "string" #include "vector" #include "algorithm" #include "functio... ...
分类:
其他好文 时间:
2019-03-30 18:36:45
阅读次数:
183
// 面试题38:字符串的排列 // 题目:输入一个字符串,打印出该字符串中字符的所有排列。例如输入字符串abc, // 则打印出由字符a、b、c所能排列出来的所有字符串abc、acb、bac、bca、cab和cba。 #include void Permutation(char* pStr, ch... ...
分类:
其他好文 时间:
2019-03-09 15:27:00
阅读次数:
187
获取 nginx 镜像 docker search nginx docker pull nginx 使用nginx镜像开启 nginx 应用容器 docker run -d --name nginx -p 8080:80 -v /tmp:/usr/share/nginx/html docker.io ...
分类:
Web程序 时间:
2019-02-27 01:37:44
阅读次数:
508
1、类前缀说明 公司专用前缀:Le 个人类前缀:CH 功能模块专用前缀:Ble(蓝牙) 渠道化专用类:Chan 代码变动专用标志:Chsign 2、文件夹划分 2.1 ApplicationEntry 包含全局通用宏、应用架构方式和程序入口部分代码。 全局通用宏LeBLE.pch: 主要表现为.pc ...
分类:
其他好文 时间:
2019-02-18 13:01:43
阅读次数:
401
分别利用颜色(colour)和形状(shape i.e. pch)进行分组很多属性需要单独设置。 用到的对象有 数据映射(Aes,Data aesthetic mappings) 几何属性(Geom,Geometric objects) 统计转换(Stat,Statistical transform ...
分类:
其他好文 时间:
2019-02-03 14:08:27
阅读次数:
331
1 //扫雷 2 //-1为雷 3 #include 4 #include 5 #include 6 #include 7 //格子区域大小(DIVISIONS * DIVISIONS) 8 #define DIVISIONS 10 9 //地雷数 10 #define MINECOUNT 10 1... ...
#include "pch.h" #include using namespace std; const float PI = 3.1415926; int main() { int iType; float readius, a, b; while (true){ cout > iType; sw... ...
分类:
编程语言 时间:
2019-01-27 14:39:22
阅读次数:
205
#include "pch.h" #include using namespace std; int main() { int i = 1, sum = 0; for (i = 1; i <=10; i++) //for 循环的三条语句:1、循环变量初始化 2、循环继续的条件 3、循环控制变量改变的... ...
分类:
编程语言 时间:
2019-01-27 13:07:29
阅读次数:
191