Forked from 0ryant/gist:5d6d0809df8e9ec9234a7c9f50264a98
Created
March 10, 2021 21:43
-
-
Save johnkamara/1ed37b29bb3ff4ab18b2a6d0c2ebed49 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"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment