amandaalton50 amandaalton50 08-09-2021 Computers and Technology contestada How many times is the body of the loop executed? int i = 1; while (i<10) { cout << i; if (i == 5) break; i++; }