{"id":11959,"date":"2022-06-30T12:27:07","date_gmt":"2022-06-30T12:27:07","guid":{"rendered":"https:\/\/bryceautomation.com\/?p=11959"},"modified":"2022-07-17T14:03:50","modified_gmt":"2022-07-17T14:03:50","slug":"basic-for-next-loop","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/","title":{"rendered":"BASIC For Next Loop"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Introduction to Altair BASIC For Next Loop<\/h3>\n\n\n\n<p>In this section, we&#8217;ll discuss the Altair BASIC For Next Loop.  Manipulating variables is an important part of any programming language.  For this example, let&#8217;s go back to 1975.  The median pay was $13,720 per year.  We&#8217;ll assume that you signed a contract to receive a pay increase of 3% per year.  We&#8217;ll write a program to calculate what you will make each year for the next 10 years.  We will begin with assigning some static numbers to variables.  After that, we&#8217;ll manipulate the variables using expressions. <\/p><div id=\"bryce-3605296858\" class=\"bryce-afterfirst bryce-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-8316758073402323\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-8316758073402323\" \ndata-ad-slot=\"7728240895\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>\n\n\n\n<p>In this case, we&#8217;ll use several BASIC programming instructions.  The LET statement assigns a value to a variable.  The FOR NEXT loop creates a loop that allows us to run the calculation for 10 years.   The PRINT statement simply prints a result to your terminal.<\/p>\n\n\n\n<p>I&#8217;ll use the <a href=\"https:\/\/adwaterandstir.com\">Altair-Duino<\/a> for this post.  I&#8217;m using Altair Hard Disk BASIC.   However, the procedure should work on most any version of BASIC that can perform floating point math.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Load Altair Basic<\/h3>\n\n\n\n<p>If  you have the <a href=\"https:\/\/adwaterandstir.com\">Altair-Duino<\/a>, simply raise switches 13, 12, and 1.  Press AUX 2 down.  Next raise ONLY switches 3, 2, and 1.  Press Aux 1 Down.  I&#8217;m going to hit enter on the memory size, and capitol C for line printer.  I chose the highest disk number of 0, and 4 files.  Next enter the date in the corresponding prompts.<\/p>\n\n\n\n<p>At this time, simply type MOUNT to mount the hard disk.  Furthermore, type DIR to see the files on the hard drive.  Keep in mind that LOAD &#8220;FILENAME&#8221; loads a file.  On the other hand, SAVE &#8220;FILENAME&#8221; saves a file to your drive.  Before we begin, type NEW to ensure that you are starting clean.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"366\" height=\"463\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-34.png\" alt=\"\" class=\"wp-image-11983 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-34.png 366w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-34-237x300.png 237w\" data-sizes=\"(max-width: 366px) 100vw, 366px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 366px; --smush-placeholder-aspect-ratio: 366\/463;\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Declare and Initialize Variables<\/h3>\n\n\n\n<p>At this point, there are some variables we need to declare.  We do that with the LET statement as follows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>10 LET RAISE = 3\n20 LET NUMYEARS = 10\n30 LET YEAR = 1975\n40 LET SALARY = 13720\n50 LET X = 0<\/code><\/pre>\n\n\n\n<p>Basically, this sets us up for a 3% raise each year starting in 1975.  Keep in mind that I do not have to use the word &#8220;LET&#8221; to assign values.  Additionally, we can place all of the assignments on the same line.  We simply separate them with a colon.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">For Next Loop<\/h3>\n\n\n\n<p>At last, we&#8217;ll get into the final part of our project.   We&#8217;ll set up our For Next loop.  In this case, we need the For Next loop to start at the year 1975.  We&#8217;ll print the initial value to our display.  We&#8217;ll add 3% to our salary, then increase the year by 1.  In short, this will print out our salary every year for the next 10 years.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>60 FOR X = YEAR TO YEAR + NUMYEARS STEP 1\n70 PRINT \"IN \"; : PRINT X; : PRINT \" YOU WILL MAKE \"; : PRINT SALARY\n80 SALARY = SALARY * (1 + (RAISE \/ 100))\n90 NEXT X<\/code><\/pre>\n\n\n\n<p>Our code should appear similar to this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"766\" height=\"247\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-40.png\" alt=\"\" class=\"wp-image-11992 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-40.png 766w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-40-300x97.png 300w\" data-sizes=\"(max-width: 766px) 100vw, 766px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 766px; --smush-placeholder-aspect-ratio: 766\/247;\" \/><\/figure>\n\n\n\n<p>Notice that I also used the STEP option.  STEP allows us to increment X by a specific value each time the loop executes.  In this case, we are just incrementing X by 1.<\/p>\n\n\n\n<p>At last, we&#8217;ll type RUN.  This will run our program, and let&#8217;s see the result.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"390\" height=\"289\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-38.png\" alt=\"\" class=\"wp-image-11989 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-38.png 390w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-38-300x222.png 300w\" data-sizes=\"(max-width: 390px) 100vw, 390px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 390px; --smush-placeholder-aspect-ratio: 390\/289;\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Summary<\/h3>\n\n\n\n<p>In short, we use the FOR NEXT loop to perform a similar operation multiple times.  In this case, we incremented the year each time the loop executes.  Additionally, we increment the salary by the amount of our raise.  In another post, we&#8217;ll discuss the <a href=\"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/\">INPUT statement.  <\/a>This will allow the user to enter his own variables without having to change the BASIC code.  <\/p>\n\n\n\n<p>To expand your BASIC knowledge, check out the post on <a href=\"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/\">READ DATA RESTORE!<\/a><\/p>\n\n\n\n<p>&#8212; Ricky Bryce<\/p>\n<div id=\"bryce-2217482886\" class=\"bryce-after-content bryce-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-8316758073402323\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-8316758073402323\" \ndata-ad-slot=\"4667596182\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Introduction to Altair BASIC For Next Loop In this section, we&#8217;ll discuss the Altair BASIC For Next Loop. Manipulating variables is an important part of any programming language. For this example, let&#8217;s go back to 1975. The median pay was $13,720 per year. We&#8217;ll assume that you signed a contract to receive a pay increase <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":11989,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[763,727],"tags":[421,723,724],"class_list":{"0":"post-11959","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-altair-8800","8":"category-vintage-computers","9":"tag-altair","10":"tag-basic","11":"tag-calculate-wage","12":"czr-hentry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>BASIC For Next Loop - Bryce Automation<\/title>\n<meta name=\"description\" content=\"Using the Altair BASIC For Next Loop. Using BASIC code, we&#039;ll create a loop to calculate our pay for the next 10 years.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"BASIC For Next Loop - Bryce Automation\" \/>\n<meta property=\"og:description\" content=\"Using the Altair BASIC For Next Loop. Using BASIC code, we&#039;ll create a loop to calculate our pay for the next 10 years.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/\" \/>\n<meta property=\"og:site_name\" content=\"Bryce Automation\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ricky.bryce.7\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-30T12:27:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-17T14:03:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-38.png\" \/>\n\t<meta property=\"og:image:width\" content=\"390\" \/>\n\t<meta property=\"og:image:height\" content=\"289\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ricky\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"BASIC For Next Loop\",\"datePublished\":\"2022-06-30T12:27:07+00:00\",\"dateModified\":\"2022-07-17T14:03:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/\"},\"wordCount\":566,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/image-38.png\",\"keywords\":[\"altair\",\"BASIC\",\"Calculate Wage\"],\"articleSection\":[\"Altair 8800\",\"Vintage Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/\",\"name\":\"BASIC For Next Loop - Bryce Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/image-38.png\",\"datePublished\":\"2022-06-30T12:27:07+00:00\",\"dateModified\":\"2022-07-17T14:03:50+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"Using the Altair BASIC For Next Loop. Using BASIC code, we'll create a loop to calculate our pay for the next 10 years.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/image-38.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/image-38.png\",\"width\":390,\"height\":289,\"caption\":\"Calculate Wages\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/06\\\/30\\\/basic-for-next-loop\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"BASIC For Next Loop\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/\",\"name\":\"Bryce Automation\",\"description\":\"Automating Home and Industry...\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/bryceautomation.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\",\"name\":\"Ricky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"caption\":\"Ricky\"},\"sameAs\":[\"http:\\\/\\\/bryceautomation.com\",\"https:\\\/\\\/www.facebook.com\\\/ricky.bryce.7\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ricky-bryce-4367a416\\\/\"],\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/author\\\/ricky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"BASIC For Next Loop - Bryce Automation","description":"Using the Altair BASIC For Next Loop. Using BASIC code, we'll create a loop to calculate our pay for the next 10 years.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/","og_locale":"en_US","og_type":"article","og_title":"BASIC For Next Loop - Bryce Automation","og_description":"Using the Altair BASIC For Next Loop. Using BASIC code, we'll create a loop to calculate our pay for the next 10 years.","og_url":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2022-06-30T12:27:07+00:00","article_modified_time":"2022-07-17T14:03:50+00:00","og_image":[{"width":390,"height":289,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-38.png","type":"image\/png"}],"author":"Ricky","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"BASIC For Next Loop","datePublished":"2022-06-30T12:27:07+00:00","dateModified":"2022-07-17T14:03:50+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/"},"wordCount":566,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-38.png","keywords":["altair","BASIC","Calculate Wage"],"articleSection":["Altair 8800","Vintage Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/","url":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/","name":"BASIC For Next Loop - Bryce Automation","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-38.png","datePublished":"2022-06-30T12:27:07+00:00","dateModified":"2022-07-17T14:03:50+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"Using the Altair BASIC For Next Loop. Using BASIC code, we'll create a loop to calculate our pay for the next 10 years.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-38.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/06\/image-38.png","width":390,"height":289,"caption":"Calculate Wages"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"BASIC For Next Loop"}]},{"@type":"WebSite","@id":"https:\/\/bryceautomation.com\/#website","url":"https:\/\/bryceautomation.com\/","name":"Bryce Automation","description":"Automating Home and Industry...","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bryceautomation.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7","name":"Ricky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","url":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","caption":"Ricky"},"sameAs":["http:\/\/bryceautomation.com","https:\/\/www.facebook.com\/ricky.bryce.7","https:\/\/www.linkedin.com\/in\/ricky-bryce-4367a416\/"],"url":"https:\/\/bryceautomation.com\/index.php\/author\/ricky\/"}]}},"_links":{"self":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/11959","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/comments?post=11959"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/11959\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/11989"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=11959"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=11959"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=11959"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}