Guest User

Untitled

a guest
May 4th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public class DoubleFor {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. for (double d = 0.1; d <= 1; d += 0.1 ){
  6.  
  7. System.out.println("d = " + d);
  8. }
  9. }
  10.  
  11. public class DoubleFor {
  12.  
  13. public static void main(String[] args) {
  14. for (double d = 0.1; d <= 1; d += 0.1 ){
  15.  
  16. System.out.println("d = " + Math.round(d*10));
  17. }
  18.  
  19. }
Add Comment
Please, Sign In to add comment