#include<iostream> #include<cmath> using namespace std; int main() { float x, y; string s = "I love you!"; int l = s.length(); for (y = 1.3f; y >= -1. ...
分类:
编程语言 时间:
2020-03-11 12:43:41
阅读次数:
169
接口测试(Postman、Swagger UI等)博客:https://testerhome.com/topics/11677https://testerhome.com/topics/6695https://testerhome.com/topics/6641https://segmentfaul... ...
分类:
其他好文 时间:
2020-03-10 15:49:52
阅读次数:
54
Linux常见命令补充 虚拟机补充:virtualbox 企业中使用最多的Linux系统是centos6和7 掌握Linux常见的基本命令的操作,企业中服务器都是Unix系列的,深入学习参考运维课程 宿主机(windows)连接虚拟机(centos),大部分人使用xshell(ssh),还用secu ...
分类:
系统相关 时间:
2020-03-09 18:00:40
阅读次数:
92
public class iloveyouright{ public static void main(String[] args){ System.out.println("\t*\t\t\t*"); System.out.println("*\t\ti love you\t\t*"); Syst ...
分类:
编程语言 时间:
2020-03-06 15:34:08
阅读次数:
69
See also: https://bugreports.qt.io/browse/QTBUG-41242https://bugzilla.redhat.com/show_bug.cgi?id=1350275 Do you have better luck if you run RStudio wi ...
分类:
其他好文 时间:
2020-03-06 13:00:21
阅读次数:
60
获取值的方式: $("input[name='killOrder']:checked").val(); $('input:radio:checked').val(); $("input[type='radio']:checked").val(); $(":radio[checked]").each(... ...
分类:
其他好文 时间:
2020-03-05 23:39:35
阅读次数:
175
一、is和do区别 (1)is是系动词 在句子中构成:主系表 I am a teacher. (2)do是助动词 帮助实义动词否定和疑问的动词。 什么是实义动词? (3)实义动词:有实际含义的动词,比如爱,这个词你可以知道对方爱你,能识别出意思的就是实义动词。 I love you. 你就可以得出对 ...
分类:
其他好文 时间:
2020-03-01 12:51:19
阅读次数:
98
伪类选择器一般会用在超链接a标签中,使用a标签的伪类选择器,我们一定要遵循"爱恨准则" LoVe HAte 1 /*没有被访问的a标签的样式*/ 2 .box ul li.item1 a:link{ 3 4 color: #666; 5 } 6 /*访问过后的a标签的样式*/ 7 .box ul l ...
分类:
其他好文 时间:
2020-02-29 13:05:33
阅读次数:
56
之前帮朋友写的脚本,运维大数据服务器时候用的。 #!/bin/bash ##磁盘数量 Disk=$( fdisk -l |grep 'Disk' |grep 'sd' |awk -F , '{print "%s",substr($1,13,1)}') var=${Disk: -1:1} echo b... ...
分类:
系统相关 时间:
2020-02-27 19:17:29
阅读次数:
124
format >>> "{0} love {1}".format('I','python') 'I love python' >>> "{a} love {b}".format(a='I',b='python') 'I love python' 位置参数必须在关键字参数之前 >>> "{0} lov ...
分类:
其他好文 时间:
2020-02-27 13:31:18
阅读次数:
54