$$\cos \left( A-B\right) =\frac {2\sin A\sin B} {\sin C}\Rightarrow \sin C \cdot \cos \left( A-B\right) =\cos \left( A-B\right) -\cos \left( A+B\right ...
分类:
其他好文 时间:
2020-03-11 01:10:22
阅读次数:
100
MORMOT通讯类说明 MORMOT在SynCrtSock.pas单元实现通讯类。 MORMOT实现TCP/UDP/HTTP/WEBSOCKET客户端和服务端的协议的单元文件。可以看出MORMOT实现的通讯协议是很全面的。MORMOT支持跨操作系统平台(WINDOWS 和 LINUX)。MORMOT ...
分类:
其他好文 时间:
2020-03-10 11:36:18
阅读次数:
306
//杨辉三角(数组) /* * @Description: Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. * Input: 5 * Output: * [ * [1], * ...
分类:
编程语言 时间:
2020-03-06 15:00:14
阅读次数:
78
1、题目 Given a non-negative index k where k ≤ 33, return the kth index row of the Pascal's triangle. Note that the row index starts from 0. In Pascal's ...
分类:
其他好文 时间:
2020-03-02 01:09:35
阅读次数:
82
1、题目 Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. In Pascal's triangle, each number is the sum of the two nu ...
分类:
其他好文 时间:
2020-03-01 23:19:06
阅读次数:
67
文件下载: 很多网站上都会提供文件下载功能,用户通过点击下载链接,下载相应的文件。 如果文件下载功能设计不当,则可能导致攻击者可以通过构造文件路径,从而获取到后台服务器上的其他的敏感文件 (此时如果 攻击者提交的不是一个程序预期的的文件名,而是一个精心构造的路径(比如../../../etc/pas ...
分类:
其他好文 时间:
2020-02-29 12:50:15
阅读次数:
73
1 """ 2 Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. 3 In Pascal's triangle, each number is the sum of the t ...
分类:
其他好文 时间:
2020-02-28 01:38:29
阅读次数:
74
#include <stdio.h> int main(void) { char name[32]; //字符数组 char password[16]; printf("请输入用户名: "); scanf("%s",&name); printf("请输入密码: "); scanf("%s",&pas ...
分类:
编程语言 时间:
2020-02-27 13:12:25
阅读次数:
100
1. Bertrand Triangle r=1; %circle radius x0=0; y0=0; %centre of circle %points for circle t=linspace(0,2*pi,200); xp=r*cos(t); yp=r*sin(t); %angles of ...
分类:
其他好文 时间:
2020-02-20 10:21:47
阅读次数:
67
经常用于提示框,下拉菜单等(csdn也很多用到,最后一图),看图: 由于在网页中经常要用到,所以特地研究 图片实现(感觉low)、svg实现(小题大作了),所以最后还是css画比较不错,兼容性也不错 三角形画法 html结构 <div class="triangle" </div 三角形画法 用bo ...
分类:
Web程序 时间:
2020-02-18 18:10:40
阅读次数:
96