Skip to content
Snippets Groups Projects
Commit 62901509 authored by Goik Martin's avatar Goik Martin
Browse files

More details in loop exercise

parent 868ecaba
No related branches found
No related tags found
No related merge requests found
......@@ -634,22 +634,66 @@ System.out.println(...);</programlisting>
}
}</programlisting>
<para>Examine the result.Then modify this code to create 5 more
lines of output.</para>
<para>Examine the result and implement the following
modifications:</para>
<orderedlist>
<listitem>
<para>Create five additional lines of output</para>
</listitem>
<listitem>
<para>Enlarge the gap between two adjacent lines of output
to a value of 3 retaining the same number of output
lines:</para>
<programlisting language="none">loop # 0
loop # 3
loop # 6
loop # 9
loop # 12</programlisting>
</listitem>
</orderedlist>
</question>
<answer>
<para>We only have to modify the while condition from <code>i
&lt; 5</code> to <code>i &lt; 10</code>.</para>
<orderedlist>
<listitem>
<para>The number of output lines is being determined by the
loop's termination condition <code>i &lt; 5</code>.
Replacing this limit by <code>while ( i &lt; 10)</code>
achieves the desired result:</para>
</listitem>
<programlisting language="java"> public static void main(String[] args) {
int i = 0;
while ( i &lt; 10) {
System.out.println("loop # " + i);
i = i + 1;
}
}</programlisting>
<listitem>
<para>We may adjust two related parameters:</para>
<programlisting language="java">while ( i &lt; 15 <co
linkends="qandaPlayLoop-1" xml:id="qandaPlayLoop-1-co"/>) {
System.out.println("loop # " + i);
i = i + 3 <co linkends="qandaPlayLoop-2" xml:id="qandaPlayLoop-2-co"/>;
}</programlisting>
<calloutlist>
<callout arearefs="qandaPlayLoop-1-co"
xml:id="qandaPlayLoop-1">
<para>Adjusting the limit to accommodate larger
values.</para>
</callout>
<callout arearefs="qandaPlayLoop-2-co"
xml:id="qandaPlayLoop-2">
<para>Raising the gap to a value of 3.</para>
</callout>
</calloutlist>
<para>Alternatively we may as well modify the print
statement:</para>
<programlisting language="java">System.out.println("loop # " + <emphasis
role="bold">i * 3</emphasis>);</programlisting>
</listitem>
</orderedlist>
</answer>
</qandaentry>
</qandadiv>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment