All pastes #2063936 Raw Edit

Untitled

public text v1 · immutable
#2063936 ·published 2011-05-18 22:19 UTC
rendered paste body
//declare loop counter = 0
//declare input array

//loop 5 times
     //display message to ask for a number
     //get number from user
     //store number in array position(loop counter)
     //increment loop counter 1
//endloop

//set min and max to the first value of the array

//loop over every element of the array
    // check if current value is higher then max
          //set new max
    // check if current value is less then min
          //set new min
//end loop

//output min and max values