上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 79 下一页
摘要: 一、更换国内源,修改为清华镜像源(PS. 如果不更换,可能…………) 备份原文件: sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak sudo cp /etc/apt/sources.list.d/raspi.list /etc/apt/ 阅读全文
posted @ 2021-04-11 07:52 木子欢儿 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 为了压榨玩客云的性能,搞了直播推流,下面教大家怎么推流 我把玩客云刷了Powersee的玩客云第二版固件,具体看这里,当然使用树莓派也可以 步骤 1、安装ffmpeg sudo apt-get install ffmpeg 2、启动推流 ffmpeg -re -i /root/video.mp4 - 阅读全文
posted @ 2021-04-11 07:49 木子欢儿 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 你是不是想和我一样把阿里云盘搭建成一个分享平台呢?像下面这样 实现直链下载,不通过客户端,还可以分享给别人 我们先来看看实现的方法 下面有两种挂载程序(任选其一) 1.Onemanager https://github.com/qkqpttgf/OneManager-php 2.ShareList 阅读全文
posted @ 2021-03-28 20:12 木子欢儿 阅读(1371) 评论(4) 推荐(0) 编辑
摘要: package com.company; import java.util.*; public class Main { public static void main(String arg[]) { System.out.println("请输入一个数字"); Scanner input =new 阅读全文
posted @ 2021-03-26 22:39 木子欢儿 阅读(356) 评论(0) 推荐(0) 编辑
摘要: package com.company; import java.util.*; public class Main { public static void main(String arg[]) { Scanner input = new Scanner(System.in); double su 阅读全文
posted @ 2021-03-26 22:22 木子欢儿 阅读(363) 评论(0) 推荐(0) 编辑
摘要: package com.company; public class Main { public static void main(String arg[]) { int sum=0,i,j; for(i=1;i<=10;i++){ if(i%2==0){ //计算1+3+5+7+9 continue 阅读全文
posted @ 2021-03-26 22:08 木子欢儿 阅读(332) 评论(0) 推荐(0) 编辑
摘要: package com.company; //计算1+1/2+1/3+1/4....前20项 public class Main { public static void main(String arg[]) { double sum = 0, item = 1; int i = 1, n = 20 阅读全文
posted @ 2021-03-26 21:57 木子欢儿 阅读(395) 评论(0) 推荐(0) 编辑
摘要: package com.company; //计算1+1/2!+1/3!+1/4!....前20项 public class Main { public static void main(String arg[]) { double sum = 0, item = 1; int i = 1, n = 阅读全文
posted @ 2021-03-26 21:51 木子欢儿 阅读(326) 评论(0) 推荐(0) 编辑
摘要: package com.company; //计算8+88+888+8888+....前20项的和 //分析:规律 88=8*10+8 public class Main { public static void main(String arg[]) { long sum=0,a=8,item=a, 阅读全文
posted @ 2021-03-26 21:46 木子欢儿 阅读(772) 评论(0) 推荐(0) 编辑
摘要: package com.company; import java.util.Scanner; public class Main { public static void main(String arg[]) { System.out.println("请输入一门成绩:"); Scanner inp 阅读全文
posted @ 2021-03-26 21:38 木子欢儿 阅读(488) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 79 下一页