What takes priority in a loop: For or While?What are the differences between “=” and “<-” in R?What is the difference between require() and library()?R - Set execution time limit in loopRetry for-loop R loop if errorComplex rules for a derived variable in RStoring data frame output from a while loop in RSum of different values over different columns in RReorder attributes of data tableSave the Results From For Loop When There Is an Error RPrint command used to create results in loop

Basic power tool set for Home repair and simple projects

My student in one course asks for paid tutoring in another course. Appropriate?

Should I email my professor to clear up a (possibly very irrelevant) awkward misunderstanding?

Co-worker is now managing my team. Does this mean that I'm being demoted?

I have found ports on my Samsung smart tv running a display service. What can I do with it?

Boundaries and Buddhism

How much steel armor can you wear and still be able to swim?

Does knowing the surface area of all faces uniquely determine a tetrahedron?

Fibonacci sequence and other metallic sequences emerged in the form of fractions

Fill the maze with a wall-following Snake until it gets stuck

Are there any individual aliens that have gained superpowers in the Marvel universe?

How could I create a situation in which a PC has to make a saving throw or be forced to pet a dog?

...and then she held the gun

First occurrence in the Sixers sequence

How to ask if I can mow my neighbor's lawn

How to address players struggling with simple controls?

Digital signature that is only verifiable by one specific person

How do I correctly reduce geometry on part of a mesh?

What does this Swiss black on yellow rectangular traffic sign with a symbol looking like a dart mean?

How can I detect if I'm in a subshell?

In windows systems, is renaming files functionally similar to deleting them?

What is this plant I saw for sale at a Romanian farmer's market?

What is the context for Napoleon's quote "[the Austrians] did not know the value of five minutes"?

I wish, I yearn, for an answer to this riddle



What takes priority in a loop: For or While?


What are the differences between “=” and “<-” in R?What is the difference between require() and library()?R - Set execution time limit in loopRetry for-loop R loop if errorComplex rules for a derived variable in RStoring data frame output from a while loop in RSum of different values over different columns in RReorder attributes of data tableSave the Results From For Loop When There Is an Error RPrint command used to create results in loop






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















Let's say I have the following block of code:



x <- 0

while (x < 50)
for (i in letters)
print(i)
x <- x + 10




What is the order of operations? Does the While stop criteria apply even if there are more loops in the for loop?



I tested this and it ran through the the whole for loop, despite x reaching 250.



Is there a way to add a rule that says follow the while loop before the for loop?










share|improve this question






















  • Related, is there a way to write a for loop that breaks any time the criteria is broken?

    – Cauder
    Mar 25 at 5:05











  • Your for loop is nested inside the while loop; so the inner for loop finishes first, before returning to the outer while loop.

    – Maurits Evers
    Mar 25 at 5:11







  • 3





    The "priority" in this case is based on order: the while loop is executed first, then x is increased by 10 a total of 26 times before the while condition is re-evaluated. If you're asking if the while loop can interrupt the internal for loop, the answer is "no". If you need that, then for (i in letters) if (x >= 50) break; print(i); x <- x + 10; .

    – r2evans
    Mar 25 at 5:11


















1















Let's say I have the following block of code:



x <- 0

while (x < 50)
for (i in letters)
print(i)
x <- x + 10




What is the order of operations? Does the While stop criteria apply even if there are more loops in the for loop?



I tested this and it ran through the the whole for loop, despite x reaching 250.



Is there a way to add a rule that says follow the while loop before the for loop?










share|improve this question






















  • Related, is there a way to write a for loop that breaks any time the criteria is broken?

    – Cauder
    Mar 25 at 5:05











  • Your for loop is nested inside the while loop; so the inner for loop finishes first, before returning to the outer while loop.

    – Maurits Evers
    Mar 25 at 5:11







  • 3





    The "priority" in this case is based on order: the while loop is executed first, then x is increased by 10 a total of 26 times before the while condition is re-evaluated. If you're asking if the while loop can interrupt the internal for loop, the answer is "no". If you need that, then for (i in letters) if (x >= 50) break; print(i); x <- x + 10; .

    – r2evans
    Mar 25 at 5:11














1












1








1








Let's say I have the following block of code:



x <- 0

while (x < 50)
for (i in letters)
print(i)
x <- x + 10




What is the order of operations? Does the While stop criteria apply even if there are more loops in the for loop?



I tested this and it ran through the the whole for loop, despite x reaching 250.



Is there a way to add a rule that says follow the while loop before the for loop?










share|improve this question














Let's say I have the following block of code:



x <- 0

while (x < 50)
for (i in letters)
print(i)
x <- x + 10




What is the order of operations? Does the While stop criteria apply even if there are more loops in the for loop?



I tested this and it ran through the the whole for loop, despite x reaching 250.



Is there a way to add a rule that says follow the while loop before the for loop?







r






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 25 at 5:03









CauderCauder

17411




17411












  • Related, is there a way to write a for loop that breaks any time the criteria is broken?

    – Cauder
    Mar 25 at 5:05











  • Your for loop is nested inside the while loop; so the inner for loop finishes first, before returning to the outer while loop.

    – Maurits Evers
    Mar 25 at 5:11







  • 3





    The "priority" in this case is based on order: the while loop is executed first, then x is increased by 10 a total of 26 times before the while condition is re-evaluated. If you're asking if the while loop can interrupt the internal for loop, the answer is "no". If you need that, then for (i in letters) if (x >= 50) break; print(i); x <- x + 10; .

    – r2evans
    Mar 25 at 5:11


















  • Related, is there a way to write a for loop that breaks any time the criteria is broken?

    – Cauder
    Mar 25 at 5:05











  • Your for loop is nested inside the while loop; so the inner for loop finishes first, before returning to the outer while loop.

    – Maurits Evers
    Mar 25 at 5:11







  • 3





    The "priority" in this case is based on order: the while loop is executed first, then x is increased by 10 a total of 26 times before the while condition is re-evaluated. If you're asking if the while loop can interrupt the internal for loop, the answer is "no". If you need that, then for (i in letters) if (x >= 50) break; print(i); x <- x + 10; .

    – r2evans
    Mar 25 at 5:11

















Related, is there a way to write a for loop that breaks any time the criteria is broken?

– Cauder
Mar 25 at 5:05





Related, is there a way to write a for loop that breaks any time the criteria is broken?

– Cauder
Mar 25 at 5:05













Your for loop is nested inside the while loop; so the inner for loop finishes first, before returning to the outer while loop.

– Maurits Evers
Mar 25 at 5:11






Your for loop is nested inside the while loop; so the inner for loop finishes first, before returning to the outer while loop.

– Maurits Evers
Mar 25 at 5:11





3




3





The "priority" in this case is based on order: the while loop is executed first, then x is increased by 10 a total of 26 times before the while condition is re-evaluated. If you're asking if the while loop can interrupt the internal for loop, the answer is "no". If you need that, then for (i in letters) if (x >= 50) break; print(i); x <- x + 10; .

– r2evans
Mar 25 at 5:11






The "priority" in this case is based on order: the while loop is executed first, then x is increased by 10 a total of 26 times before the while condition is re-evaluated. If you're asking if the while loop can interrupt the internal for loop, the answer is "no". If you need that, then for (i in letters) if (x >= 50) break; print(i); x <- x + 10; .

– r2evans
Mar 25 at 5:11













2 Answers
2






active

oldest

votes


















2














Your for loop is nested inside the while loop. Each time the while loop enters an iteration, control is handed over to its loop body which is the for loop in this case.The for loop then takes control and executes its iteration. After that, the for loop exits its control and hands over back to while loop. The while loop kind of decides the number of times the whole for loop executes.



To break a for loop when the criteria is broken or with any other logic, you can use a break statement inside an if block inside the loop body.






share|improve this answer
































    1














    Since (x < 50) is true at start, no more condition checking is done until for loop is completed. The only option is to use conditional break inside for loop.



    for (i in letters)
    if (x < 50)
    break

    print(i)
    x <- x + 10







    share|improve this answer




















    • 1





      Good answer overall but I think the if condition is around the wrong way.

      – Marius
      Mar 25 at 5:40











    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55331506%2fwhat-takes-priority-in-a-loop-for-or-while%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    Your for loop is nested inside the while loop. Each time the while loop enters an iteration, control is handed over to its loop body which is the for loop in this case.The for loop then takes control and executes its iteration. After that, the for loop exits its control and hands over back to while loop. The while loop kind of decides the number of times the whole for loop executes.



    To break a for loop when the criteria is broken or with any other logic, you can use a break statement inside an if block inside the loop body.






    share|improve this answer





























      2














      Your for loop is nested inside the while loop. Each time the while loop enters an iteration, control is handed over to its loop body which is the for loop in this case.The for loop then takes control and executes its iteration. After that, the for loop exits its control and hands over back to while loop. The while loop kind of decides the number of times the whole for loop executes.



      To break a for loop when the criteria is broken or with any other logic, you can use a break statement inside an if block inside the loop body.






      share|improve this answer



























        2












        2








        2







        Your for loop is nested inside the while loop. Each time the while loop enters an iteration, control is handed over to its loop body which is the for loop in this case.The for loop then takes control and executes its iteration. After that, the for loop exits its control and hands over back to while loop. The while loop kind of decides the number of times the whole for loop executes.



        To break a for loop when the criteria is broken or with any other logic, you can use a break statement inside an if block inside the loop body.






        share|improve this answer















        Your for loop is nested inside the while loop. Each time the while loop enters an iteration, control is handed over to its loop body which is the for loop in this case.The for loop then takes control and executes its iteration. After that, the for loop exits its control and hands over back to while loop. The while loop kind of decides the number of times the whole for loop executes.



        To break a for loop when the criteria is broken or with any other logic, you can use a break statement inside an if block inside the loop body.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 25 at 5:38









        NelsonGon

        5,64441135




        5,64441135










        answered Mar 25 at 5:31









        lasith eshanlasith eshan

        415




        415























            1














            Since (x < 50) is true at start, no more condition checking is done until for loop is completed. The only option is to use conditional break inside for loop.



            for (i in letters)
            if (x < 50)
            break

            print(i)
            x <- x + 10







            share|improve this answer




















            • 1





              Good answer overall but I think the if condition is around the wrong way.

              – Marius
              Mar 25 at 5:40















            1














            Since (x < 50) is true at start, no more condition checking is done until for loop is completed. The only option is to use conditional break inside for loop.



            for (i in letters)
            if (x < 50)
            break

            print(i)
            x <- x + 10







            share|improve this answer




















            • 1





              Good answer overall but I think the if condition is around the wrong way.

              – Marius
              Mar 25 at 5:40













            1












            1








            1







            Since (x < 50) is true at start, no more condition checking is done until for loop is completed. The only option is to use conditional break inside for loop.



            for (i in letters)
            if (x < 50)
            break

            print(i)
            x <- x + 10







            share|improve this answer















            Since (x < 50) is true at start, no more condition checking is done until for loop is completed. The only option is to use conditional break inside for loop.



            for (i in letters)
            if (x < 50)
            break

            print(i)
            x <- x + 10








            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Mar 25 at 5:53

























            answered Mar 25 at 5:08









            Suven PandeySuven Pandey

            671216




            671216







            • 1





              Good answer overall but I think the if condition is around the wrong way.

              – Marius
              Mar 25 at 5:40












            • 1





              Good answer overall but I think the if condition is around the wrong way.

              – Marius
              Mar 25 at 5:40







            1




            1





            Good answer overall but I think the if condition is around the wrong way.

            – Marius
            Mar 25 at 5:40





            Good answer overall but I think the if condition is around the wrong way.

            – Marius
            Mar 25 at 5:40

















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55331506%2fwhat-takes-priority-in-a-loop-for-or-while%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript