可以适应不同的数量。 <!DOCTYPE html> <body> <p></p> <p></p> <p></p> <p></p> <p></p> <p></p> <div id="enter"></div> <div id="exit"> <p></p> <p></p> <p></p&g ...
分类:
其他好文 时间:
2020-03-01 12:31:24
阅读次数:
53
实践一下。 <!DOCTYPE html> <body> <p></p> <p></p> <p></p> <p></p> <p></p> <p></p> <div id="enter"></div> <div id="exit"> <p></p> <p></p> <p></p> &l ...
分类:
编程语言 时间:
2020-03-01 12:29:13
阅读次数:
98
错误信息如下: ErrorTraceback (most recent call last): File "D:\python37\lib\unittest\case.py", line 59, in testPartExecutor yield File "D:\python37\lib\unit ...
分类:
其他好文 时间:
2020-02-29 12:57:56
阅读次数:
154
回到: "Linux系列文章" "Shell系列文章" "Awk系列文章" break和continue break可退出for、while、do...while、switch语句。 continue可让for、while、do...while进入下一轮循环。 next和nextfile next会 ...
分类:
其他好文 时间:
2020-02-29 11:38:59
阅读次数:
67
回到: "Linux系列文章" "Shell系列文章" "Awk系列文章" 流程控制语句 注:awk中语句块没有作用域,都是全局变量。 代码块 if...else 搞笑题:妻子告诉程序员老公,去买一斤包子,如果看见卖西瓜的,就买两个。结果是买了两个包子回来。 switch...case awk 中的 ...
分类:
其他好文 时间:
2020-02-29 11:31:53
阅读次数:
54
集合可实现增删改查,下面的项目用ArrayList集合来做实例,ArrayList集合几个常用的函数 .size() 集合大小 .add() 添加对象到集合 .remove() 删除集合的对象 用到的其他函数 .equals() 字符串比较 System.exit(-1) 退出系统,非零 1 /* ...
分类:
编程语言 时间:
2020-02-29 00:55:41
阅读次数:
78
Problem Statement Link Clarification: The problem states that for each pair of points, we consider the minimum possible distance over any possible mom ...
分类:
其他好文 时间:
2020-02-29 00:30:43
阅读次数:
61
1.安装ColladaToGltf.exe 2. @echo off cd C:\Users\wangc04\Desktop\daeconverting\ColladaToGltfcollada2gltf-bin.exe -f C:\Users\wangc04\Desktop\daeconverti ...
分类:
其他好文 时间:
2020-02-28 18:55:36
阅读次数:
55
1 #include<stdio.h> 2 #include<string.h> 3 //定义一个结构体 4 struct MyAccount{ 5 double leftMoney; //余额 6 char accountDetail[3000]; //账户明细 7 }; 8 9 //定义相关的变 ...
分类:
其他好文 时间:
2020-02-28 01:21:14
阅读次数:
70
猜年龄只能猜三次 age = 18 count = 0 while count<3: age = int(input("age:")) if age == 18: print("对了") exit() elif age >18: print("大了") else: print("小了") count ...
分类:
其他好文 时间:
2020-02-27 23:35:49
阅读次数:
53