Guest User

Untitled

a guest
Nov 14th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. P(S):
  2. P(S3)
  3. P(S1)
  4. C--
  5. if C < 0:
  6. V(S1)
  7. P(S2)
  8. else:
  9. V(S1)
  10. V(S3)
  11.  
  12. V(S):
  13. P(S1)
  14. C++
  15. if C <= 0:
  16. V(S2)
  17. V(S1)
  18.  
  19. P(S):
  20. P(S3)
  21. while C <= 0:
  22. ;
  23. P(S1)
  24. C--
  25. V(S1)
  26. V(S3)
  27.  
  28. V(S):
  29. P(S1)
  30. C++
  31. V(S1)
Add Comment
Please, Sign In to add comment