ForLoop2.js 775 B

123456789101112131415161718192021
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. for (;;)
  6. {
  7. for(var a = 10; a >= 0; --a)
  8. {
  9. for(var b = 0; b < 10; b += 4)
  10. {
  11. for(var c = 0; c < 10; c += 3)
  12. {
  13. WScript.Echo(a,b,c);
  14. }
  15. b--;
  16. b--;
  17. }
  18. }
  19. break;
  20. }