Saved Bookmarks
| 1. |
Write the pseudocode to print all multiples of 5 between 10 and 25 (including both 10 and 25). |
| Answer» in python this code will give you your desired result:for i in range(10,26): if i%5==0: print(i) | |