Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GoikLectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Goik Martin
GoikLectures
Commits
62901509
Commit
62901509
authored
7 years ago
by
Goik Martin
Browse files
Options
Downloads
Patches
Plain Diff
More details in loop exercise
parent
868ecaba
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Doc/Sd1/gettingStarted.xml
+56
-12
56 additions, 12 deletions
Doc/Sd1/gettingStarted.xml
with
56 additions
and
12 deletions
Doc/Sd1/gettingStarted.xml
+
56
−
12
View file @
62901509
...
...
@@ -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
<
5
</code>
to
<code>
i
<
10
</code>
.
</para>
<orderedlist>
<listitem>
<para>
The number of output lines is being determined by the
loop's termination condition
<code>
i
<
5
</code>
.
Replacing this limit by
<code>
while ( i
<
10)
</code>
achieves the desired result:
</para>
</listitem>
<programlisting
language=
"java"
>
public static void main(String[] args) {
int i = 0;
while ( i
<
10) {
System.out.println("loop # " + i);
i = i + 1;
}
}
</programlisting>
<listitem>
<para>
We may adjust two related parameters:
</para>
<programlisting
language=
"java"
>
while ( i
<
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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment