Created
August 1, 2019 09:39
-
-
Save 0ryant/5d6d0809df8e9ec9234a7c9f50264a98 to your computer and use it in GitHub Desktop.
Java - Coding Challenge 2 - MegaBytes Converter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MegaBytesConverter { | |
public static void printMegaBytesAndKiloBytes(int kiloBytes){ | |
if (kiloBytes < 0){ | |
System.out.println("Invalid Value"); | |
} else { | |
int megabytes = (kiloBytes/1024); | |
int kiloRemainder = kiloBytes%1024; | |
System.out.println(kiloBytes+" KB = "+megabytes+" MB and "+kiloRemainder+" KB"); | |
} | |
} | |
} |
great stuff :)
public class Main {
public static void main(String[] args) {
}
public static void printMegaBytesAndkiloBytes(int kiloBytes) {
if (kiloBytes < 0) {
System.out.println("Invalid value");
} else {
System.out.println(kiloBytes + "KB " + kiloBytes / 1024 + "MB " + kiloBytes % 1024 + "KB");
}
}
}
Nice selection of code for both IntelliJ and the Java checker ! Perfect.
So good
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
excellent work with your code, I used it and its works
please mine although with an output but not required under the Java check solution course:
public class MegaBytesConverter {