<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="pt">
		<id>https://pt.arcowiki.com/index.php?action=history&amp;feed=atom&amp;title=Construa_um_Loop</id>
		<title>Construa um Loop - Histórico de revisão</title>
		<link rel="self" type="application/atom+xml" href="https://pt.arcowiki.com/index.php?action=history&amp;feed=atom&amp;title=Construa_um_Loop"/>
		<link rel="alternate" type="text/html" href="https://pt.arcowiki.com/index.php?title=Construa_um_Loop&amp;action=history"/>
		<updated>2026-04-09T15:13:55Z</updated>
		<subtitle>Histórico de edições para esta página nesta wiki</subtitle>
		<generator>MediaWiki 1.29.1</generator>

	<entry>
		<id>https://pt.arcowiki.com/index.php?title=Construa_um_Loop&amp;diff=26&amp;oldid=prev</id>
		<title>Slia: Criou a página com &quot;'''Build a Loop''' is the technique to repeate a sequence of instructions a certain number of times based on an initial and limit value and a specified increment.&lt;br/&gt; I...&quot;</title>
		<link rel="alternate" type="text/html" href="https://pt.arcowiki.com/index.php?title=Construa_um_Loop&amp;diff=26&amp;oldid=prev"/>
				<updated>2018-06-01T09:42:48Z</updated>
		
		<summary type="html">&lt;p&gt;Criou a página com &amp;quot;&amp;#039;&amp;#039;&amp;#039;&lt;a href=&quot;/index.php?title=Build_a_Loop&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Build a Loop (página não existe)&quot;&gt;Build a Loop&lt;/a&gt;&amp;#039;&amp;#039;&amp;#039; is the technique to repeate a sequence of instructions a certain number of times based on an initial and limit value and a specified increment.&amp;lt;br/&amp;gt; I...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nova&lt;/b&gt;&lt;/p&gt;&lt;div&gt;'''[[Build a Loop]]''' is the technique to repeate a sequence of instructions a certain number of times based on an initial and limit value and a specified increment.&amp;lt;br/&amp;gt;&lt;br /&gt;
It is important to declare all the loop [[variables]].&amp;lt;br/&amp;gt;&lt;br /&gt;
The generic statement is &amp;lt;code&amp;gt;DO/ index variable, initial value, limit value, increment&amp;lt;/code&amp;gt;.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;color: green; text-decoration: none;&amp;quot;&amp;gt;$$ Example of a Do Loop&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;DECL/INTGR,i&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;DECL/CHAR,20,elnm&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;DECL/DOUBLE,xx,yy,zz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;color: green; text-decoration: none;&amp;quot;&amp;gt;$$ This is to create some dummy points.&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;F(POI_1)=FEAT/POINT,CART,  1.111,2.222,3.333,    0,0,0&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;F(POI_2)=FEAT/POINT,CART,  4.444,5.555,6.666,    0,0,0&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;F(POI_3)=FEAT/POINT,CART,  7.777,8.888,9.999,    0,0,0&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;FA(POI_1)=FEAT/POINT,CART,  1.111,2.222,3.333,   0,0,0&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;FA(POI_2)=FEAT/POINT,CART,  4.444,5.555,6.666,   0,0,0&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;FA(POI_3)=FEAT/POINT,CART,  7.777,8.888,9.999,   0,0,0&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;color: green; text-decoration: none;&amp;quot;&amp;gt;$$ DO/ index variable, initial value, limit value, increment&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;DO/i,1,3,1&amp;lt;/code&amp;gt;&lt;br /&gt;
::::&amp;lt;code&amp;gt;&amp;lt;span style=&amp;quot;color: green; text-decoration: none;&amp;quot;&amp;gt;	$$ commands executed during each Do cycle&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
::::&amp;lt;code&amp;gt;	elnm=ASSIGN/CONCAT('poi_',STR(i))&amp;lt;/code&amp;gt;&lt;br /&gt;
::::&amp;lt;code&amp;gt;	xx=OBTAIN/FA(@elnm),3&amp;lt;/code&amp;gt;&lt;br /&gt;
::::&amp;lt;code&amp;gt;	yy=OBTAIN/FA(@elnm),4&amp;lt;/code&amp;gt;&lt;br /&gt;
::::&amp;lt;code&amp;gt;	zz=OBTAIN/FA(@elnm),5&amp;lt;/code&amp;gt;&lt;br /&gt;
::::&amp;lt;code&amp;gt;	elnm=ASSIGN/CONCAT('newpoi_',STR(i))&amp;lt;/code&amp;gt;&lt;br /&gt;
::::&amp;lt;code&amp;gt;	F(@elnm)=FEAT/POINT,CART,  xx,yy,zz,    0,0,0&amp;lt;/code&amp;gt;&lt;br /&gt;
::::&amp;lt;code&amp;gt;	FA(@elnm)=FEAT/POINT,CART,  xx,yy,zz,    0,0,0&amp;lt;/code&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;ENDDO&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[it:Costruisci un anello]]&lt;br /&gt;
[[zh-cn:建立一个循环]]&lt;br /&gt;
[[pt:Construa um Loop]]&lt;br /&gt;
[[de:Erstellen Sie eine Schleife]]&lt;br /&gt;
[[es :Construye un bucle]]&lt;br /&gt;
[[en:Build a Loop]]&lt;/div&gt;</summary>
		<author><name>Slia</name></author>	</entry>

	</feed>