摘要: import java.util.Scanner; //调用java.util.Scanner public class Test { public static void main (String[] args) { Scanner keyboardInput = new Scanner(Syst 阅读全文
posted @ 2020-05-20 17:18 profesor 阅读(1168) 评论(0) 推荐(0) 编辑
摘要: import java.io.IOException; public class Test { public static void main (String[] args) throws IOException { char a = (char) System.in.read(); //默认接受i 阅读全文
posted @ 2020-05-20 17:03 profesor 阅读(175) 评论(0) 推荐(0) 编辑
摘要: public class getchar { public static void main(String[] args) throws java.io.IOException //必不可少 { int num = System.in.read(); //读进来的数,默认保存为整数,如果需要输出 刚 阅读全文
posted @ 2020-05-18 09:30 profesor 阅读(924) 评论(0) 推荐(0) 编辑
摘要: list comprehension: my_list = [num*num for num in range(1,11)] print(my_list) if使用 my_list = [num for num in range(1,11) if num > 5] print(my_list) if 阅读全文
posted @ 2020-05-16 23:38 profesor 阅读(189) 评论(0) 推荐(0) 编辑
摘要: VirtualBox: How to share folders from Windows to Ubuntu https://www.youtube.com/watch?v=NkGmp4ETjRs 阅读全文
posted @ 2020-05-12 21:48 profesor 阅读(105) 评论(0) 推荐(0) 编辑
摘要: terminal中输入 vim ~/.bashrc 添加如下内容 #newlyadded export PATH="$PATH:/usr/local/sbin:/usr/sbin:/sbin" 打开新的terminal,输入 ifconfig 成功 如果不行,试试安装net-tools sudo a 阅读全文
posted @ 2020-05-12 19:01 profesor 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 来源:https://blog.csdn.net/p309654858/article/details/131778994 进入 /etc/apt/路径cd /etc/apt/将sources.list备份保存为sources.backup.list,以防止有需要的时候更换回来cp -a sourc 阅读全文
posted @ 2020-05-12 07:57 profesor 阅读(2158) 评论(0) 推荐(0) 编辑
摘要: 1.备份源文件 cp /etc/apt/sources.list /etc/apt/sources.list_bk 2.手动修改源文件 vim /etc/apt/sources.list 3.选择其中一个源 #中科大 deb http://mirrors.ustc.edu.cn/kali kali- 阅读全文
posted @ 2020-05-12 07:55 profesor 阅读(812) 评论(0) 推荐(0) 编辑
摘要: 创建hello.java文件, 输入: public class hello { public static void main(String[] args) { System.out.println("hello, world!"); } } 在hello.java所在的directory中, 打 阅读全文
posted @ 2020-05-09 22:37 profesor 阅读(2253) 评论(0) 推荐(0) 编辑
摘要: 输出如下图形: * * * * * * * * * * * * * * * * * * * * * C语言代码 //打印倒三角图案 #include <stdio.h> void reversed_triangle(int n); //函数声明 int main() { int n; puts("需 阅读全文
posted @ 2020-05-08 16:54 profesor 阅读(1792) 评论(0) 推荐(1) 编辑