View Single Post
  #12  
Old 12-16-2007, 02:35 AM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Ah, I completely misread, I thought you said numbers in an array, not a set of variables. In that case:
PHP Code:
temp.lowest={-1,999999};
for (
i=0;i<temp.array.size();i++) {
  if (
i<temp.lowest) {
    
temp.lowest={i,temp.array[i]};
  }

It's a little more compact.
Reply With Quote