mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-26 20:34:32 +03:00
fix code formatting (#4722)
This commit is contained in:
parent
9359cded7a
commit
d5e7ada2dc
@ -317,7 +317,7 @@ public class LearnJava {
|
|||||||
System.out.println("1/2.0 = " + (i1 / (double)i2)); // => 0.5
|
System.out.println("1/2.0 = " + (i1 / (double)i2)); // => 0.5
|
||||||
|
|
||||||
// Modulo
|
// Modulo
|
||||||
System.out.println("11%3 = "+(11 % 3)); // => 2
|
System.out.println("11%3 = " + (11 % 3)); // => 2
|
||||||
|
|
||||||
// Comparison operators
|
// Comparison operators
|
||||||
System.out.println("3 == 2? " + (3 == 2)); // => false
|
System.out.println("3 == 2? " + (3 == 2)); // => false
|
||||||
@ -371,7 +371,7 @@ public class LearnJava {
|
|||||||
|
|
||||||
// While loop
|
// While loop
|
||||||
int fooWhile = 0;
|
int fooWhile = 0;
|
||||||
while(fooWhile < 100) {
|
while (fooWhile < 100) {
|
||||||
System.out.println(fooWhile);
|
System.out.println(fooWhile);
|
||||||
// Increment the counter
|
// Increment the counter
|
||||||
// Iterated 100 times, fooWhile 0,1,2...99
|
// Iterated 100 times, fooWhile 0,1,2...99
|
||||||
@ -386,7 +386,7 @@ public class LearnJava {
|
|||||||
// Increment the counter
|
// Increment the counter
|
||||||
// Iterated 100 times, fooDoWhile 0->99
|
// Iterated 100 times, fooDoWhile 0->99
|
||||||
fooDoWhile++;
|
fooDoWhile++;
|
||||||
} while(fooDoWhile < 100);
|
} while (fooDoWhile < 100);
|
||||||
System.out.println("fooDoWhile Value: " + fooDoWhile);
|
System.out.println("fooDoWhile Value: " + fooDoWhile);
|
||||||
|
|
||||||
// For Loop
|
// For Loop
|
||||||
|
Loading…
Reference in New Issue
Block a user