码迷,mamicode.com
首页 >  
搜索关键字:valid number    ( 29755个结果
数的进制转换
1 #include <bits/stdc++.h> 2 using namespace std; 3 int main() { 4 int t; 5 cin >> t; 6 while (t--) { 7 int a, b; 8 string a_line, b_line; 9 cin >> a ...
分类:其他好文   时间:2020-11-30 15:20:06    阅读次数:5
ES 快速开始
ES语句构造麻烦,每次都拼,这次备份一下 1. 创建索引 PUT http://sae1002.qihoo.ai:9200/kosmos {"settings":{"index":{"number_of_shards":1,"number_of_replicas":1},"analysis":{"f ...
分类:其他好文   时间:2020-11-27 11:47:06    阅读次数:18
oracle查询sql 执行历史和计算机
select * from v$sql select row_number() over (order by a.username, a.client_info, a.terminal) as id , a.username, a.sid, a.serial# as serial_id, a.cli ...
分类:数据库   时间:2020-11-26 14:51:52    阅读次数:9
JavaScript中的类型检查有点麻烦
js 的动态类型有好有坏。好的一面,不必指明变量的类型。不好的是,咱们永远无法确定变量的类型。 typeof运算符可以确定 js 中的6种类型: typeof 10; // => 'number' typeof 'Hello'; // => 'string' typeof false; // => ...
分类:编程语言   时间:2020-11-25 12:41:44    阅读次数:6
二维码
一、什么是二维码 二维码又称二维条码,常见的二维码为 "QR Code" ,QR 全称 Quick Response 是一个近几年来移动设备上超流行的一种编码方式,它比传统的Bar Code条形码能存更多的信息,也能表示更多的数据类型。二维条码/二维码(2-dimensional bar code) ...
分类:其他好文   时间:2020-11-25 12:31:41    阅读次数:4
vue element-ui rules 封装
新建validator.js,内容如下,参考补充: const valid = { REG_PHONE: /^[1]([3-9])[0-9]{9}$/, checkNull(rule, value, callback, message, flag = true) { if (isNullOrEmpt ...
分类:其他好文   时间:2020-11-25 12:29:42    阅读次数:4
关于isNaN() 判断是否是非数字
关于isNaN() 判断是否是非数字(如果不是number类型,先隐式类型 转换成number类型,在判断是否非数字) 是非数字,返回true,不是非数字(是非数字 =》false) console.log(isNaN(100)); //false console.log(isNaN(100.55) ...
分类:其他好文   时间:2020-11-24 12:41:51    阅读次数:10
FreeSwitch Hangup-Cause电话挂断原因速查
Freeswitch官网太慢了,经常还打不开,把电话挂断原因大全复制一份到这里,方便日常查看 ITU-T Q.850 Code SIP Equiv. Enumeration Cause Description ITU-T Q.850 Code SIP Equiv. Enumeration Cause ...
分类:其他好文   时间:2020-11-23 12:49:07    阅读次数:53
[LeetCode] 200. Number of Islands(岛屿的数目)
Difficulty: Medium Related Topics: Depth-first Search, Breadth-first Search, Union Find Link: https://leetcode.com/problems/number-of-islands/ Descrip ...
分类:其他好文   时间:2020-11-23 12:25:21    阅读次数:3
实验3
实验任务4#include<stdio.h> #include<math.h> int main() { int n,a,b,i,s; printf("Enter a number:"); scanf("%d",&n); while(n){ i=0; s=0; while(n!=0){ a=n%10 ...
分类:其他好文   时间:2020-11-23 12:22:09    阅读次数:3
29755条   上一页 1 ... 36 37 38 39 40 ... 2976 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!