Chương 5 Quick tham khảo để Thêm một số tiền để biến một Làm điều này sử dụng các nhà điều hành bổ sung hợp chất. Ví dụ: số tiền biến + =; Sử dụng toán tử trừ hợp chất. | Chapter 5 Quick Reference To Do this Use the compound addition operator. For Add an amount to a variable example variable amount Use the compound subtraction operator. For Subtract an amount from a variable example variable - amount Use a while statement. For example int i 0 while i 10 i i Run one or more statements while a condition is true Alternatively use a for statement. For example for int i 0 i 10 i i Use a do statement. For example int i 0 Repeatedly execute statements one or more times do i i while i 10