码迷,mamicode.com
首页 >  
搜索关键字:put    ( 16494个结果
How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops
How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops Regular expressions are used for Pattern Matching. To use in Excel fo ...
分类:其他好文   时间:2021-04-14 12:44:22    阅读次数:0
Python如何使用input一次输入多个变量
变量1,变量2,变量3=input("提示语句").split("分隔符",分隔次数) 这里input用split返回的值是列表,如果想对他进行强制类型转换请用map函数 ...
分类:编程语言   时间:2021-04-13 12:29:48    阅读次数:0
行内元素和块元素有哪些
行内元素: <span> <a> <i> <img> <button <input> <select> <strong> 粗体强调 <q> 段引用 <lable> 表格 块元素: <div> <h1>-6 <p> <form> <table> <ol> <ul> <li> <hr> 水平分割线 <c ...
分类:其他好文   时间:2021-04-13 11:54:01    阅读次数:0
RequestMapping与GetMapping、PutMapping等注解的区别
##RequestMapping RequestMapping中的method方法 method:指定请求的method类型, GET、POST、PUT、DELETE等; ##GetMapping 看一下注解的底层源码 可以看到底层用了@RequestMapping(method = Request ...
分类:移动开发   时间:2021-04-13 11:47:36    阅读次数:0
[Fundamental of Power Electronics]-PART II-8. 变换器传递函数-8.4 变换器传递函数的图形化构建
8.4 变换器传递函数的图形化构建 第7章推导出的buck变换器小信号等效电路模型在图8.55中再次给出。让我们用上一节的图解方法来构造该变换器的传递函数和端阻抗。 Fig. 8.55 Small-signal model of the buck converter, with input impe ...
分类:其他好文   时间:2021-04-12 12:23:41    阅读次数:0
iptables
iptables iptables 是用户空间的命令行工具,真正实现包过滤,转发,地址转化的 netfilter 模块 iptables 表链关系 表/链 prerouting input output forward postrouting raw √ √ √ mangle √ √ √ √ nat ...
分类:其他好文   时间:2021-04-10 13:26:02    阅读次数:0
4.9
package test; public class test1 { public static void main(String args[]){ //使用for循环计算1-100的和,除了以3结尾的那些数 int sum = 0; for(int x = 1;x<=100;x++){ if(x% ...
分类:其他好文   时间:2021-04-10 13:09:10    阅读次数:0
[POI2014]HOT-Hotels 加强版
I.II.[POI2014]HOT-Hotels 加强版 易于发现,三点间两两距离相等,当且仅当两个LCA较深的点到它们的LCA距离相等,且第三个点到该LCA的距离与前两个点相同。 于是我们设 \(f_{x,i}\) 表示 \(x\) 子树中有多少对点,它们到LCA距离相同,且上述距离比该LCA到 ...
分类:其他好文   时间:2021-04-10 12:52:44    阅读次数:0
算法题:字符串s1,s2,判断s1的任意排列是否是s2的子串,返回true或false
1 package com.Liuyt; 2 import java.io.FileInputStream; 3 import java.io.FileNotFoundException; 4 import java.util.ArrayList; 5 import java.util.List; ...
分类:编程语言   时间:2021-04-09 13:25:52    阅读次数:0
uboot
uboot启动代码流程 board.c文件__attribute__((nomips16)) void board_init_r (gd_t *id, ulong dest_addr)函数 1、调用do_bootm if(BootType == '3') { char *argv[2]; sprin ...
分类:其他好文   时间:2021-04-09 12:50:57    阅读次数:0
16494条   上一页 1 ... 11 12 13 14 15 ... 1650 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!