Skip to content

Commit ab399a1

Browse files
committed
removed some of the comments
1 parent bc89252 commit ab399a1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/ch5_loopsanditeration.ptx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,10 @@ while i > 0: # while i is greater than 0
192192
<code>
193193
public class WhileLoopExample {
194194
public static void main(String[] args) {
195-
int i = 5; // initialize i to 5
195+
int i = 5;
196196
while (i &gt; 0) { // while i is greater than 0
197197
System.out.println(i);
198-
i = i - 1; // decrement i by 1
198+
i = i - 1;
199199
}
200200
}
201201
}

0 commit comments

Comments
 (0)