DidiHristova93

Untitled

Oct 9th, 2018
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class techModuleMToKm {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner(System.in);
  6.  
  7. double meters = Double.parseDouble(scanner.nextLine());
  8. double convert = meters / 1000;
  9. double round = Math.nextUp(convert);
  10.  
  11. System.out.printf("%.2f ", round);
  12. }
  13. }
Add Comment
Please, Sign In to add comment