Advertisement
Jorell_Ramos_Sinaga

Untitled

Dec 19th, 2021
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. i = 0
  2. j = 1
  3. value = 0
  4. temp = 0
  5. temp2 = 0
  6. while (i <= 2):
  7. if (temp2 == 0):
  8. print("I=%.0f J=%.0f" % (i, j))
  9. else:
  10. print("I=%.1f J=%.1f" % (i, j))
  11.  
  12. temp += 1
  13. if (temp == 3):
  14. i += 0.2
  15. value += 0.2
  16. j = value
  17. temp = 0
  18. temp2 += 1
  19.  
  20. if(temp2 == 5):
  21. temp2 = 0
  22. j += 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement