Advertisement
Guest User

Untitled

a guest
Oct 21st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. package main;
  2.  
  3. import java.text.DecimalFormat;
  4.  
  5. public class main {
  6.  
  7. public static void main(String[] args)
  8. {
  9. double var1=4.5;
  10. DecimalFormat deci = new DecimalFormat ("0.00");
  11. String str = deci.format(var1);
  12. System.out.println(str);
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement