/**************************** Name: Nathanael Paul Userid: nrpaul Section #: 68 Date: 10-23-00 Pseudocode #: 2 Description: Output all numbers up to n that are divisble by 5 ****************************/ Declare a variable, i, to hold the current number Ask the user for an integer, and store the integer as n while i is less than n if i is divisible by 5 output i end if add one to i end while