Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

"Convert into compound assignment" means to modify an arithmetic assignment statement (such as x = x + 5) into a compound assignment statement (such as x += 5) that combines the arithmetic operation with the assignment operator. This results in shorter and more compact code.