Skip to content

Instantly share code, notes, and snippets.

@jukbot
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jukbot/21f2f07a6f91410516bb to your computer and use it in GitHub Desktop.
Save jukbot/21f2f07a6f91410516bb to your computer and use it in GitHub Desktop.
Convert kilimeter into mile unit
import java.io.*;
import java.util.*;
public class KiloToMile {
public static void main(String[] args) {
System.out.println("Miles Kilometers");
System.out.println("----------------------------------------------");
int kilo = 0;
while(kilo < 100) {
kilo++;
float result = kilo*1.609344f;
System.out.println( kilo + " " + result);
}
}
}
// End line of code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment