#include <math.h> #include <stdio.h> #include <stdlib.h> // 函数声明 void solve(double a, double b, double c); // 主函数 int main() { double a, b, c; printf( ...
分类:
其他好文 时间:
2019-11-26 22:43:52
阅读次数:
90
1、在阿里云服务器上安装nginx,推荐使用yum安装 2、配置nginx 安装完成后,进入 nginx 配置文件目录 一般是 /etc/nginx/ 下在该目录下新建一个 vhost 文件夹作为你自己的配置文件目录然后进入 vhost 新建一个配置文件,比如 demo.conf,加入如下配置 注意 ...
分类:
其他好文 时间:
2019-11-25 13:24:59
阅读次数:
73
In [1]: import numpy as np import pandas as pd import matplotlib as mpl import matplotlib.pyplot as plt In [2]: #创建一个矩阵 a = np.array([[1, 2], [3, 4]]) ...
分类:
编程语言 时间:
2019-11-22 09:12:22
阅读次数:
117
// 一元二次方程求解 // 重复执行, 直到按Ctrl+D或Ctrl+E结束 // #include <math.h> #include <stdio.h> #include <stdlib.h> int main() { float a, b, c, x1, x2; float delta, r ...
分类:
其他好文 时间:
2019-11-18 23:31:48
阅读次数:
109
/* 编程找出5个整数的最大数和最小数 《C语言程序设计教程学习指导》p122实验内容(3) */ #include <stdio.h> #include <stdlib.h> int main() { int number, max, min, n; n=1; printf("输入第%d个数: " ...
分类:
其他好文 时间:
2019-11-17 13:06:24
阅读次数:
81
https://leetcode-cn.com/problems/reverse-nodes-in-k-group/solution/javadi-gui-fang-fa-100-by-chadriy-imdgvs6udp/ https://leetcode-cn.com/problems/reve ...
分类:
其他好文 时间:
2019-11-12 17:21:21
阅读次数:
90
第15章?网络 15.1?连网 计算机网络(computer network): 为了通信和共享资源而连接一起的一组计算设备。 无线连接(wireless): 没有物理电线的网络连接。 节点(主机)( node (host): 网络中任何可寻址的设备。 数据传输率( 带宽)( data transf ...
分类:
其他好文 时间:
2019-11-10 00:00:03
阅读次数:
147
2.画布apicanvas.getContext("2d");canvas.widthcanvas.height 3.上下文api ctx.fillRect(x,y,w,h):填充矩形 ctx.strokeRect(x,ymwmh):带边框的矩形 ctx.clearRect(0,0,oc.width ...
分类:
其他好文 时间:
2019-11-09 13:59:10
阅读次数:
80
如果你的服务器换了ip怎么办? 如果你的服务器换了名字怎么办? 以前的小伙伴怎么办? 以前的老客户怎么办? 没关系,简单教你修改监听地址,老朋友随便找! 想要修改监听地址首先要找到两个文件,确定两样东西! 第一 你的主机名字? 第二 你的IP地址? 第三 你的listener.ora在哪里? 第四 ...
分类:
数据库 时间:
2019-11-08 10:53:37
阅读次数:
127
一.在app.js定义全局变量 二.在地址列表adress.js里给全局变量赋值 。 三.在订单页面渲染名字、电话、地址信息 ...
分类:
其他好文 时间:
2019-10-29 23:34:20
阅读次数:
267