//修改之前查看一下npm config get registry
https://registry.npmjs.org/
//设置源npm config set registry https://registry.npm.taobao.org
//确认npm config get registry 转载于:https://www.cnblogs.com/huochaihe/p/10562132.html
1: 2个数的最大数
package me;
public class Me {public static void main(String[] args) {int a 10;int b 6;int max a>b?a:b; //方法一System.out.println(max);int max1;if (a>b){ //方法二max1 a;System.out.println(max1);}else if (a<b){max1 b;System.…