码迷,mamicode.com
首页 >  
搜索关键字:fun    ( 10813个结果
实验四
#include <stdio.h> long long fun(int n); // 函数声明 int main() { int n; long long f; while(scanf("%d", &n) != EOF) { f = fun(n); // 函数调用 printf("n = %d, ...
分类:其他好文   时间:2021-04-30 12:24:09    阅读次数:0
将函数 fn 的执行上下文改为 obj 对象
输入:function () {return this.greeting + ', ' + this.name + '!!!';} , {greeting: 'Hello', name: 'Rebecca'} 期望输出:Hello, Rebecca!!! 修改上下文: function speak( ...
分类:其他好文   时间:2021-04-30 11:56:44    阅读次数:0
bootstrapping中标准差计算
根据文献,我需要的bootstrapping标准差为 d(t)是我的原始叠加结果,b(t)是第i次bootstrapping的结果。 而Matlab中std函数提供的标准差: 所以直接采用std计算bootstrapping的标准差是不行的 所以写了一个bootstrapping的标准差的脚本: f ...
分类:移动开发   时间:2021-04-29 12:21:43    阅读次数:0
数组去重
1、利用ES6 Set去重 {}没去重 let arr = [1, 1, 'true', 'true', true, true, 15, 15, false, false, undefined, undefined, null, null, NaN, NaN, 'NaN', 'NaN', 0, 0, ...
分类:编程语言   时间:2021-04-29 11:48:15    阅读次数:0
vue .splice is not a function解决方案
在帮朋友解决一个vue的问题的时候,想删除数组里面的一个元素,在网上查询使用splice方法,但一直报错,提示jtConlist.splice is not a function,找了好长时间,也没找到问题 splice是数组的方法,按道理肯定有这个方法,除非jtConlist不是数组,使用type ...
分类:其他好文   时间:2021-04-28 12:06:50    阅读次数:0
字符串反转的几种方法
def reverse_str(s): from functools import reduce res = s[::-1] # 切片 res = "".join(list(reversed(s))) # 反转函数 res = reduce(lambda x,y:y+x, s) # reduce p ...
分类:其他好文   时间:2021-04-28 12:06:36    阅读次数:0
图片转Base64格式
<input type="file" name="dddd" id="imgs"> <input type="button" onclick="ck()" value="submit" /> var reader = new FileReader(); var AllowImgFileSize = ...
分类:其他好文   时间:2021-04-27 14:37:23    阅读次数:0
利用质因数分解定理求与n互质的数的个数
今天我来分享一下如何利用素数分解定理求解与n互质的数的个数。 下面是代码 #include<bits/stdc++.h> using namespace std; long long fun(int x) { long long ans=x; int t=sqrt(x); int cnt; for( ...
分类:其他好文   时间:2021-04-26 14:12:06    阅读次数:0
vue自定义指令防抖
import Vue from "vue"; // vue自定义指令防抖 Vue.directive("antiShake", { bind: function(el, binding, vnode) { let { delay, fn } = binding.value; //参数:时间,执行函数 ...
分类:其他好文   时间:2021-04-26 13:57:03    阅读次数:0
获取字符串字节长度及根据字节截取
背景:假设现在有两个字符串 let str="王者农药",str2 = "wzny"; console.log(str.length) // 4 console.log(str2.length) // 4 两个字符串的长度是一直的,但是str和str2在页面上占据的位置大小是不一致的; 1.获取字符 ...
分类:其他好文   时间:2021-04-26 13:50:14    阅读次数:0
10813条   上一页 1 ... 9 10 11 12 13 ... 1082 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!