360安全卫士里面有个组件叫流量防火墙,感觉挺好用,但是不想安装360全家桶,于是自己捣鼓着用C#写一个比较简化的版本。 查看电脑上开启的TCP或UDP端口,可以用netstat命令,netstat用法如下: 之前也有接触过netstat命令,因为开发的软件写死了端口,有时候开启失败,这时候会用ne ...
题目: 输入3个整数,输出它们的平均值,保留3位小数。 思路: 直接计算即可。 代码: #include <iostream>#include <iomanip>using namespace std;int main(){ int a = 0, b = 0, c = 0; cin >> a >> ...
分类:
其他好文 时间:
2019-12-28 09:24:51
阅读次数:
94
转自 26点的博客 链接:http://www.iamlintao.com/6711.html ...
分类:
Web程序 时间:
2019-12-27 20:20:36
阅读次数:
247
JSTL JSP为我们提供了可以自定义标签库(Tag Library)的功能,用来替代代码脚本,Sun公司又定义了一套通用的标签库名为JSTL(JSP Standard Tag Library),里面定义很多我们开发中常用的方法 使用JSTL 1.先引入JSTL标签库的jar包类库到WEB-INF/ ...
分类:
Web程序 时间:
2019-12-27 09:58:52
阅读次数:
97
一、Node安装 windows 1. Node.js (>=8.9, 推荐8.11.0+) Node官网下载 .msi 文件,按步骤下载安装即可。 安装完之后在cmd中输入 node -v,若显示版本号,则说明安装成功。 2. Git(命令行终端) Git官网下载安装即可。 Linux apt-g ...
分类:
其他好文 时间:
2019-12-26 17:56:04
阅读次数:
80
首先我们先介绍下什么是 sha1 ?大理石构件 sha的全称是:Secure Hash Algorithm(安全哈希算法)主要适用于数字签名标准 (Digital Signature Standard DSS)里面定义的数字签名算法(Digital Signature Algorithm DSA)。 ...
分类:
Web程序 时间:
2019-12-26 17:34:50
阅读次数:
161
Google "how many words does a native speaker know" 一、an average of 20,000 to 30,000 vocabulary words ①Even with intensive study, how many words do non ...
分类:
其他好文 时间:
2019-12-25 01:37:36
阅读次数:
178
1001 A+B Format (20分) Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unl ...
分类:
其他好文 时间:
2019-12-24 23:42:32
阅读次数:
89
[TOC] 7 SWIG 与 C++11 7.1 引言 This chapter gives you a brief overview about the SWIG implementation of the C++11 standard. This part of SWIG is still a ...
分类:
编程语言 时间:
2019-12-23 22:44:32
阅读次数:
144
YAML 语法 使用空格 Space 缩进表示分层,不同层次之间的缩进可以使用不同的空格数目,但是同层元素一定左对齐,即前面空格数目相同(不能使用 Tab,各个系统 Tab对应的 Space 数目可能不同,导致层次混乱) ‘#’表示注释,只能单行注释,从#开始处到行尾 破折号后面跟一个空格(a da ...
分类:
其他好文 时间:
2019-12-23 22:05:38
阅读次数:
77