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");
}
}
}
@aiham-lab
Copy link

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");
    }
}

}

@travelonether
Copy link

Nice selection of code for both IntelliJ and the Java checker ! Perfect.

@Suraj7887
Copy link

So good

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