Lib.tests.source.splitnew Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of krakatau-lib Show documentation
Show all versions of krakatau-lib Show documentation
Assembler, disassebmler, decompiler and compiler tools library for Java.
public class splitnew {
public static void main(String... args){
Number x = null;
int y = args.length;
while (y --> 0){
if (y%3 == 2){
break;
}
}
x = new Long(args[0]);
System.out.println(x);
System.out.println((byte)y);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy