摘要: //我们知道: Java有Math.random()来随机选择[0,1)内的任意数 //随机取数 // import java.util.Random; public class Choice { public static void main(String[] args) { Random rdm 阅读全文
posted @ 2020-05-25 21:56 profesor 阅读(2700) 评论(0) 推荐(0) 编辑
摘要: Array of arrays: #include <stdio.h> #include <string.h> int main() { char tracks[][100] = { "will the protesters in American cities bring progress", " 阅读全文
posted @ 2020-05-25 16:27 profesor 阅读(181) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash for item in * do if [ -f $item ] then echo $item fi done for do done if then (elif...then...) (else) fi 阅读全文
posted @ 2020-05-24 22:53 profesor 阅读(95) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Reader { public static void main(String[] args) { Scanner scan = new Scanner(System.in); //创建对象 System.out.prin 阅读全文
posted @ 2020-05-24 22:45 profesor 阅读(417) 评论(0) 推荐(0) 编辑
摘要: import static java.lang.System.out; public class hello { public static void main(String[] args) { boolean bool = false; while (false) //这里如果直接换成while 阅读全文
posted @ 2020-05-24 22:29 profesor 阅读(216) 评论(0) 推荐(0) 编辑
摘要: Tech's push to teach coding isn't about kids' success – it's about cutting wages Ben Tarnoff Today’s hi-tech wages threaten Silicon Valley’s bottom li 阅读全文
posted @ 2020-05-23 20:07 profesor 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 打开Potplayer后,按F5打开设置 Auto check for updates: 选中Never Auto download files if ... 不要勾选 完成后点击右下角的OK 如果还是不行,在修改位于C:\Windows\System32\drivers\etc下的hosts文件, 阅读全文
posted @ 2020-05-23 11:28 profesor 阅读(478) 评论(0) 推荐(0) 编辑
摘要: web_scraping_package.py from bs4 import BeautifulSoup import requests session = requests.Session() headers = { 'User-agent': 'Mozilla/5.0 (Windows NT 阅读全文
posted @ 2020-05-22 18:10 profesor 阅读(147) 评论(0) 推荐(0) 编辑
摘要: texlive-base – 160 MB texlive-latex-recommended – 203 MB texlive – 269 MB texlive-latex-extra – 464 MB texlive-full – 5903 MB reference: https://linux 阅读全文
posted @ 2020-05-21 17:25 profesor 阅读(812) 评论(0) 推荐(0) 编辑
摘要: public class Test { public static void main (String[] args) { String[] a = {"roll out", "rule out", "normalcy", "palaver", "satirical", "rut"}; //下面提供 阅读全文
posted @ 2020-05-20 17:34 profesor 阅读(283) 评论(0) 推荐(0) 编辑