vim ping.sh ping -c2 $1 &> /dev/null //-c2表示运行2次, $1代表变量 if [ $? -eq 0 ];then // $?表示判定上句命令是否正确 0表示正确 1错误 // -eq表示 等于= echo "$1 is up" else echo "$1 i ...
分类:
其他好文 时间:
2021-02-08 12:36:08
阅读次数:
0
一.2020年11月份各语言的排名:1. C2 .Python3 .Java4 .C++5 .C#6 .Visual Basic7 .JavaScript8 .PHP9 .R10. SQL11 .Groovy12 .Perl13 .Go14 .Swift15 .Ruby16 .Assembly la ...
分类:
编程语言 时间:
2020-12-03 12:11:17
阅读次数:
23
动态加载类—— String d = "Employee";Class c2 = Class.forName(d); 创建对象——Object M = c2.newInstance(); 获取类的域、方法等 Field f1 = c2.getDeclaredField("name"); 获取某个具体 ...
分类:
编程语言 时间:
2020-11-17 12:43:32
阅读次数:
12
错误现象: 原因分析: \u-boot-xlnx-xilinx-v2018.1\u-boot-xlnx-xilinx-v2018.1\drivers\mtd\spi\ spi_flash.c中 static const struct spi_flash_info *spi_flash_read_id ...
分类:
其他好文 时间:
2020-10-30 12:16:08
阅读次数:
60
1 需要解决的问题 复数运算 class Complex { public: int a; int b; }; int main() { Complex c1 = {1,2}; Complex c2 = {3,4}; Compelx c3 = c1 + c2; //error: no match f ...
分类:
其他好文 时间:
2020-09-24 21:59:44
阅读次数:
51
1046 Shortest Distance (20分) #include<stdio.h> #include<iostream> using namespace std; int main() { int length[100100]; int n,n2,num=0; int c1,c2; sca ...
分类:
其他好文 时间:
2020-09-18 03:18:51
阅读次数:
29
1003 Emergency (25分) #include<stdio.h> #include<iostream> using namespace std; const int maxn=1010; const int INF=1000000000; int n,m,c1,c2; int G[max ...
分类:
其他好文 时间:
2020-09-17 23:33:09
阅读次数:
34
"""给你 k 种面值的硬币,面值分别为 c1, c2 ... ck,每种硬币的数量无限,再给一个总金额 amount,问你最少需要几枚硬币凑出这个金额,如果不可能凑出,算法返回 -1 。算法的函数签名如下:"""coins = [1, 2, 5]money = 11def coin_change( ...
分类:
编程语言 时间:
2020-08-10 09:27:18
阅读次数:
113
题目说明: 已知两个矩阵a,b,求a*b 分析: 结果矩阵等于 a的每一行的元素,分别乘b的每一列的元素在相加; 前提:a的列=b的行 矩阵a2*2 1 2 1 -1 * 矩阵b2*3 1 2 -3 -1 1 2 结果矩阵C2*3 -1 4 1 2 1 -5 我的代码主要分为一下几个模块: 1.从键 ...
分类:
其他好文 时间:
2020-07-30 21:47:07
阅读次数:
56
博客效果代码 记得申请js 博客主题:simplememory 页面定制CSS代码 /*simplememory*/ #google_ad_c1, #google_ad_c2 {display:none;} .syntaxhighlighter a, .syntaxhighlighter div, ...
分类:
其他好文 时间:
2020-07-29 21:32:37
阅读次数:
76