Oh My Holy FFF Time Limit: 5000/2500 MS (Java/Others) Memory Limit: 65535/65535 K (Java/Others)Total Submission(s): 1368 Accepted Submission(s): 394 P ...
分类:
其他好文 时间:
2019-07-20 19:51:48
阅读次数:
92
万万没想到之聪明的编辑 题目描述我叫王大锤,是一家出版社的编辑。我发现一个发现拼写错误的捷径: 1. 三个同样的字母连在一起,一定是拼写错误,去掉一个的就好啦:比如 helllo -> hello2. 两对一样的字母(AABB型)连在一起,一定是拼写错误,去掉第二对的一个字母就好啦:比如 hello ...
分类:
其他好文 时间:
2019-07-20 15:48:06
阅读次数:
580
一、赋值运算符 = 将右边的值赋给左边变量 二、算数运算符 + - * / % 加 减 乘 除 取余 三、符合运算符 += -= *= /= %= 四、自增或自减运算符 ++ -- 变量的自增和自减指的是在自身基础上进行 +1或-1 的操作 注意: 自增或自减运算符在单独与变量结合时,放前和放后没有 ...
分类:
Web程序 时间:
2019-07-20 09:58:28
阅读次数:
125
Programming Ability Test (PAT) is organized by the College of Computer Science and Technology of Zhejiang University. Each test is supposed to run sim ...
分类:
其他好文 时间:
2019-07-20 00:17:18
阅读次数:
105
```python 1.定义一个函数,该函数可以实现在内部输入一个信息,如果该信息不能转换为正整数,则重新输入,直到能转换为正整数,则对外返回转换的正整数 def ts(): while True: a=input("输入一个数") b=a.isdigit() print(b) if b: retu ...
分类:
其他好文 时间:
2019-07-19 21:18:58
阅读次数:
151
1 /* 2 * To change this license header, choose License Headers in Project Properties. 3 * To change this template file, choose Tools | Templates 4 * a... ...
分类:
其他好文 时间:
2019-07-19 21:13:47
阅读次数:
717
想做的效果:input框禁止输入中文(例如:输入“A2012你好”,中文会过滤掉,显示“A2012”) 微信小程序没问题,可是支付宝就是不行,最后在文档看到controled这个值,试了一下,没想到成功了,那就记录一下吧! ...
分类:
微信 时间:
2019-07-19 18:37:58
阅读次数:
338
import { Form, Icon, Input, Button, Checkbox } from 'antd'; class NormalLoginForm extends React.Component { handleSubmit = e => { e.preventDefault(); ... ...
分类:
其他好文 时间:
2019-07-19 18:36:18
阅读次数:
109
A+B Problem Description A+B Input 11 Output 2 Sample Input 1 2 Sample Output 3 解释: 双手打字,以示清白。 1 #include<bits/stdc++.h> 2 3 using namespace std; 4 5 6 ...
分类:
其他好文 时间:
2019-07-19 12:18:37
阅读次数:
98
DOM沒搞通,今天繼續學DOM。學三個node屬性,nodename,nodevalue,nodetype屬性。name返回節點名稱,value返回節點值,type返回節點類型。貌似簡單,這裏我用自己的方法測試這三個屬性代碼,在網頁裏顯示測試的内容,這樣弄要比alert(),和console.log ...
分类:
Web程序 时间:
2019-07-19 12:17:34
阅读次数:
141