发现个好东西: 一个免费短链生成项目:“ https://www.isok.co”一个可以生成所有短链的服务,isok.co的这个含义能覆盖所有短链含义isok, 我试过了很不错,都可以试试
/** * Created by xabcd on 2019/2/11. */ public class TestJava3_15 {public static void main(String args[]) { int a = 13; int b = 4; System.out.println("a = " + a + ",b " + b); System.out.println("a/b ="+(a/b));//a/b外面的括号可以去掉 System.out.println("a/b= "+(float)a/b); } } a = 13,b 4 a/b =3 a/b= 3.25