Write the pseudocode to print all multiples of 5 between 10 and 25 (including both 10 and 25).
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
in python this code will give you your desired result:for i in range(10,26): if i%5==0: print(i)