All pastes #2050578 Raw Edit

Anonymous

public text v1 · immutable
#2050578 ·published 2011-04-25 19:11 UTC
rendered paste body
bool isMyStringANumber(String s){
  for(int i=0; i<s.length(); ++i){
    c = s.charAt(i);
    if(!(c<= '9' && c >= '0')){ // how should I have written this line?
      // what goes here?
    }
  }
  //what goes here?
}

// something else is missing - what is it?