devaughnnorthcu8491 devaughnnorthcu8491 16-05-2023 Computers and Technology contestada What is output by the code below? int t = 1, amount = 0; do{ amount = amount = 2; t = t + 2; }while (amount<25); System.out.println(amount);