tk.hongkailiu.test.app.math.Number Maven / Gradle / Ivy
The newest version!
package tk.hongkailiu.test.app.math;
public class Number {
public static long add2long(int a, int b) {
return (long) a + (long) b;
//return a + b;
}
public static int add2int(int a, int b) {
return a + b;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy