Advertisement
Guest User

Untitled

a guest
May 21st, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class MainClass {
  2.  
  3. public static void main(String[] args){
  4. AsiriYukleme ay = new AsiriYukleme();
  5. int i = 550;
  6. double d= 45.666666666;
  7. String str ="22.53";
  8.  
  9. System.out.println(ay.formatDuzenle(i));
  10. System.out.println(ay.formatDuzenle(d));
  11. System.out.println(ay.formatDuzenle(str));
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement