The do-while statement int sun 0, number 1 do These statements are sum + number i executed as long as sum number++ is less than or equal to 1.000.000 whi1e(sum<=1000000); C 2000 McGraw-Hill troduction to Object-Oriented Programming with Java--Wu Chapter 7-13© 2000 McGraw-Hill Introduction to Object-Oriented Programming with Java--Wu Chapter 7 - 13 The do-while Statement int sum = 0, number = 1; do { sum += number; number++; } while ( sum <= 1000000 ); These statements are executed as long as sum is less than or equal to 1,000,000