随笔分类 -  面试题

上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要:public class Solution { public static void main(String[] args) { int dNum = 1264; String str = ""; while (dNum > 0) { int rem = dNum % 2; str = rem + str; dNum = dNum / 2; } System.out.println("Binary 阅读全文
posted @ 2019-12-10 12:08 anobscureretreat 阅读(162) 评论(0) 推荐(0) 编辑
摘要:package testpacknm; import java.util.Scanner; public class testcnm { public static void main(String[] args) { int dNum = 5; System.out.println("Binary is: " + Integer.toBinaryString(dNum)); } } 阅读全文
posted @ 2019-12-10 12:02 anobscureretreat 阅读(85) 评论(0) 推荐(0) 编辑
摘要:public class Solution { public static void main(String[] args) { Scanner ip = new Scanner(System.in); System.out.print("Enter radius: "); double radius = ip.nextDouble(); double circumference = 2 * 3. 阅读全文
posted @ 2019-12-09 19:58 anobscureretreat 阅读(138) 评论(0) 推荐(0) 编辑
摘要:public class Solution { public static void main(String[] args) { Scanner ip = new Scanner(System.in); System.out.print("Enter a number: "); double n = ip.nextDouble(); ... 阅读全文
posted @ 2019-12-09 19:55 anobscureretreat 阅读(130) 评论(0) 推荐(0) 编辑
摘要:public class Solution { public static void main(String[] args) { Scanner ip = new Scanner(System.in); double input = 0; int count = 0; double sum = 0; while (input != -1) { System.out.print("Enter inp 阅读全文
posted @ 2019-12-09 19:49 anobscureretreat 阅读(138) 评论(0) 推荐(0) 编辑
摘要:public class Solution { public static void main(String[] args) { Scanner ip = new Scanner(System.in); System.out.print("Enter A: "); int a = ip.nextInt(); System.out.print("Enter B: "); int b = ip.nex 阅读全文
posted @ 2019-12-09 19:47 anobscureretreat 阅读(93) 评论(0) 推荐(0) 编辑
摘要:public class Solution { public static void main(String[] args) { int x = 11, y = 7; int res = 1; for (int i = 1; i <= y; i++) res = i * x; System.out.println("The product of " + x + " and " + y + " is 阅读全文
posted @ 2019-12-09 19:43 anobscureretreat 阅读(160) 评论(0) 推荐(0) 编辑
摘要:输出 阅读全文
posted @ 2019-12-09 12:30 anobscureretreat 阅读(154) 评论(0) 推荐(0) 编辑
摘要:python中单引号和双引号是等效的 字符串过长需要换行时,使用\,如 helloworld\ helloworld 或者是直接使用'''(也可以用来注释),如 '''hello world''' 输出let's go的方法 >>> 'let\'s go' "let's go" >>> "let's go" "let's go" >>> '' 阅读全文
posted @ 2019-12-08 22:07 anobscureretreat 阅读(1216) 评论(0) 推荐(0) 编辑
摘要:test.sh 运行 阅读全文
posted @ 2019-12-07 20:12 anobscureretreat 阅读(602) 评论(0) 推荐(0) 编辑
摘要:第一个参数 : $1,第二个参数 :$2 test.sh 输出 例子 : 脚本会复制文件(arg1) 到目标地址(arg2) copy.sh 运行 阅读全文
posted @ 2019-12-07 19:54 anobscureretreat 阅读(576) 评论(0) 推荐(0) 编辑
摘要:在写一个shell脚本时,如果你想要检查前一命令是否执行成功,在if条件中使用“$?”可以来检查前一命令的结束状态。 阅读全文
posted @ 2019-12-07 19:46 anobscureretreat 阅读(2643) 评论(0) 推荐(0) 编辑
摘要:方法一: 2>&1 (# ls /usr/share/doc > out.txt 2>&1 ) 方法二: &> (# ls /usr/share/doc &> out.txt ) 阅读全文
posted @ 2019-12-07 19:41 anobscureretreat 阅读(626) 评论(0) 推荐(0) 编辑
摘要:在shell脚本,我们可以使用两种类型的变量: 系统定义变量 用户定义变量 系统变量是由系统系统自己创建的。这些变量通常由大写字母组成,可以通过“set”命令查看。 用户变量由系统用户来生成和定义,变量的值可以通过命令“echo $”查看。 阅读全文
posted @ 2019-12-07 19:38 anobscureretreat 阅读(638) 评论(0) 推荐(0) 编辑
摘要:在Linux操作系统,“/bin/bash”是默认登录shell,是在创建用户时分配的。使用chsh命令可以改变默认的shell。示例如下所示: 阅读全文
posted @ 2019-12-07 19:35 anobscureretreat 阅读(1688) 评论(0) 推荐(0) 编辑
摘要:一个Shell脚本是一个文本文件,包含一个或多个命令。作为系统管理员,我们经常需要使用多个命令来完成一项任务,我们可以添加这些所有命令在一个文本文件(Shell脚本)来完成这些日常工作任务。 阅读全文
posted @ 2019-12-07 19:31 anobscureretreat 阅读(240) 评论(0) 推荐(0) 编辑
摘要:#主流的Linux发行版 Ubuntu, Debian ,Fedora, CentOS,Red Hat,Red-flag Linux ************************************************************************************************* #常用命令 rmdir 命令删除目录 mkdir命令创建目... 阅读全文
posted @ 2019-10-09 22:26 anobscureretreat 阅读(535) 评论(0) 推荐(0) 编辑
摘要:oracle的全连接查询可以直接用full on,但是在mysql中没有full join,mysql使用union实现全连接. oracle的全连接 mysql的全连接 参考: https://blog.csdn.net/qq_36387683/article/details/93600415 阅读全文
posted @ 2019-08-16 02:29 anobscureretreat 阅读(367) 评论(0) 推荐(0) 编辑
摘要:参考: https://blog.csdn.net/GV7lZB0y87u7C/article/details/79969293 阅读全文
posted @ 2019-08-16 02:19 anobscureretreat 阅读(348) 评论(0) 推荐(0) 编辑
摘要:MySQL官方对索引的定义为:索引(Index)是帮助MySQL高效获取数据的数据结构。 我们可以简单理解为:快速查找排好序的一种数据结构。 Mysql索引主要有两种结构:B+Tree索引和Hash索引。我们平常所说的索引,如果没有特别指明,一般都是指B树结构组织的索引(B+Tree索引)。 参考: 阅读全文
posted @ 2019-08-16 02:18 anobscureretreat 阅读(298) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 11 下一页