chore: remove trailing whitespace from README.md formatting

This commit is contained in:
2025-12-02 20:12:50 +00:00
parent 0216064cf1
commit c09a0a41be
11 changed files with 2435 additions and 71 deletions
+21
View File
@@ -0,0 +1,21 @@
public class DoWhile {
public static int main() {
int i = 0;
int sum = 0;
do {
sum = sum + i;
i = i + 1;
} while (i < 5);
System.out.println(sum);
int j = 10;
do {
System.out.println(j);
j = j - 1;
} while (j > 7);
return 0;
}
}