<script> /*99乘法口诀*/ /*外层表示乘法口诀的每一行*/ for (var i=1; i<=9; i++) { /*内层表示乘法口诀每一行里面的每个式子,通过归纳得出里面的式子就可以了*/ for (var j=1; j<=i; j++) { document.write(i+"*" ...
分类:
其他好文 时间:
2020-12-25 11:38:45
阅读次数:
0
//函数名if属于标识符,不能以数字开头,不能使用关键字,而if是关键字,所以控制台会报错,那么也就不会向下执行。//JS标识符,只能是字母数字下划线和$美元符号,不能以数字开头,或者关键字,保留字function if(){ dcoument.write("abc"); alert("abc"); ...
分类:
Web程序 时间:
2020-12-25 11:38:06
阅读次数:
0
//函数名if属于标识符,不能以数字开头,不能使用关键字,而if是关键字,所以控制台会报错,那么也就不会向下执行。//JS标识符,只能是字母数字下划线和$美元符号,不能以数字开头,或者关键字,保留字function if(){ dcoument.write("abc"); alert("abc"); ...
分类:
其他好文 时间:
2020-12-25 11:37:51
阅读次数:
0
一。AlexNet网络结构和参数 二。训练部分 model.py 1 import torch.nn as nn 2 import torch 3 4 5 class AlexNet(nn.Module): 6 def __init__(self, num_classes=1000, init_we ...
分类:
Web程序 时间:
2020-12-25 11:37:31
阅读次数:
0
测试TestTcp请求 处理Socket,代码如下: #region 测试TestTcp /// <summary> /// 测试TestTcp /// </summary> public static async void TestTcp() { var threadStart = new Thr ...
分类:
其他好文 时间:
2020-12-22 12:32:26
阅读次数:
0
字节、字、位、比特的概念和关系 位(bit),音译为“比特”,表示二进制位。位是计算机内部存储数据的最小单位,一般用小写b表示 字节(byte),是计算机中数据处理的基本单位。计算机中以字节为单位存储和解释信息,规定一个字节由八个二进制位构成,所以1byte = 8bit。字节一般用大写B表示,也可 ...
分类:
其他好文 时间:
2020-12-22 12:27:21
阅读次数:
0
Write a SQL query to get the nth highest salary from the Employee table. + + + | Id | Salary | + + + | 1 | 100 | | 2 | 200 | | 3 | 300 | + + + For exa ...
分类:
其他好文 时间:
2020-12-22 12:23:32
阅读次数:
0
? 1. 相关概念 1.1字节码文件的跨平台性 Java 语言是跨平台的(write once, run anywhere) 当 Java 源代码成功编译成字节码后,如果想在不同的平台上面运行, 则无须再次编译 但是 这个优势不再那么吸引人了。Python、PHP、Perl、Ruby、Lisp 等有 ...
分类:
其他好文 时间:
2020-12-22 12:16:04
阅读次数:
0
备份原来的源 sudo cp /etc/apt/sources.list /etc/apt/sources_init.list 更换源:gedit编辑器 sudo gedit /etc/apt/sources.list 更新 sudo apt-get update sudo apt-get upgr ...
分类:
系统相关 时间:
2020-12-22 12:08:23
阅读次数:
0
loop脚本 @title z_loop @echo off rem set times=8 rem set num=1 set /a times+=1 :loop if not %num% == %times% ( @echo on rem begin rem write here that ne ...
分类:
其他好文 时间:
2020-12-21 11:58:46
阅读次数:
0