CS计算机代考程序代写 Java // DoWhileExample.java – Demonstrates the use of do-while

// DoWhileExample.java – Demonstrates the use of do-while
class DoWhileExample {
public static void main(String[] args) {
int sum = 0, n = 1;
do {
sum = sum + n;
n = n +1;
} while ( n <= 10); System.out.println("Sum = " + sum); } }