码迷,mamicode.com
首页 >  
搜索关键字:import static    ( 107948个结果
IfElsePractise
/* 指定考试成绩,判断成绩的等级。 90-100 优秀 80-89 好 70-79 良 60-69 及格 60以下 不及格 */ public class IfElsePractise{ public static void main(String[] args){ int score = 98; ...
分类:其他好文   时间:2021-06-28 19:00:36    阅读次数:0
SeguenceIf
/*单if语句的格式: if(关系表达式){ 语句体; } */ public class SeguenceIf{ public static void main(String [] args){ System.out.println("今天天气不错,正在压马路,突然发现一个好玩的地方:网吧"); ...
分类:其他好文   时间:2021-06-28 18:55:48    阅读次数:0
16、方法的重载
方法的重载 public class MethodDemo05 { public static void main(String[] args) { int add1 = add(1, 2); System.out.println(add1); System.out.println(" "); in ...
分类:其他好文   时间:2021-06-28 18:55:14    阅读次数:0
应用 |前端限制仅允许指定ip访问页面
封装方法 import axios from 'axios' const allowIP = ['119.133.5.19']; //允许访问 async function getIp() { const res=await axios.get('https://api.ipify.org/')// ...
分类:其他好文   时间:2021-06-28 18:55:02    阅读次数:0
17、可变参数
可变参数 实际上参数是数组 public class MethodDemo07 { public static void main(String[] args) { MethodDemo07 demo07 = new MethodDemo07(); demo07.test(1,2,3,4,5,6,7 ...
分类:其他好文   时间:2021-06-28 18:53:22    阅读次数:0
18、递归
递归 public class MethodDemo09 { //2! 2*1 //3! 3*2*1 //5! 5*4*3*2*1 public static void main(String[] args) { MethodDemo09 demo09 = new MethodDemo09(); i ...
分类:其他好文   时间:2021-06-28 18:52:21    阅读次数:0
electron 截图,两种方式:desktopCapturer.getSources 与 navigator.mediaDevices.getUserMedia
1 // In the renderer process. 2 3 import { desktopCapturer } from 'electron'; 4 import { screen } from '@electron/remote'; 5 6 export async function c ...
分类:其他好文   时间:2021-06-28 18:51:50    阅读次数:0
19、案例
案例 public class MethodDemo11 { public static void main(String[] args) { judge(); } //加法 public static double add(double x,double y) { return x + y; } ...
分类:其他好文   时间:2021-06-28 18:50:17    阅读次数:0
Golang常用排序算法比较
使用Golang实现以下排序算法: 冒泡排序 选择排序 插入排序 快速排序 并打印时间进行比较。 主函数 package main import ( "fmt" "math/rand" "sort" "time" ) const ( num = 10000 // 测试数组的长度 rangeNum = ...
分类:编程语言   时间:2021-06-28 18:47:49    阅读次数:0
PCRaster安装
改了很久才import成功。期间查了不少东西,虽然大部分没用上,但还是记录一下。 PCRaster的安装和个人的最终解决方法 Software for environmental modelling | PCRaster 官网推荐新创建一个虚拟环境运行。看到conda于是打开prompt。 cond ...
分类:其他好文   时间:2021-06-28 18:42:28    阅读次数:0
107948条   上一页 1 ... 13 14 15 16 17 ... 10795 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!