Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. int i = 10;
  2. while (i > 0) {
  3. a = 2;
  4. i--;
  5. }
  6.  
  7. for (int i = 0; i < n; ++i) {
  8. x = y + z;
  9. a[i] = 6 * i + x * x;
  10. }
  11.  
  12. x = y + z;
  13. t1 = x * x;
  14. for (int i = 0; i < n; ++i) {
  15. a[i] = 6 * i + t1;
  16. }
  17.  
  18. int i = 10;
  19. if (i > 0) {
  20. a = 2;
  21. }
  22. while (i > 0) {
  23. i--;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement