Skip to content

Instantly share code, notes, and snippets.

@0ryant
Created August 1, 2019 09:39
Show Gist options
  • Save 0ryant/5d6d0809df8e9ec9234a7c9f50264a98 to your computer and use it in GitHub Desktop.
Save 0ryant/5d6d0809df8e9ec9234a7c9f50264a98 to your computer and use it in GitHub Desktop.
Java - Coding Challenge 2 - MegaBytes Converter
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");
}
}
}
@Suraj7887
Copy link

So good

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment