Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
if(u<=100)
charge=u*1.35;
else if(u=>100&&u<=200)

What's wrong with this last statement? It is showing an error.

share|improve this question
1  
Which programming language? What error does it show? Please edit your question such that it answers these questions. (Add a tag for the programming language, and append the error message(s) to your question.) Thank you! – stakx Aug 11 '12 at 13:24
@stakx: User last seen... "May 1st, 2011." I don't think he's coming back... =) – David Cain Aug 11 '12 at 13:28
@David: I think it's still worth pointing out what is wrong with a question (e.g. in the case where another new user stumbles over this question; they should see what is expected of a question on SO). – stakx Aug 11 '12 at 13:32

3 Answers

would help if you mentioned what language this is for but probably you should be using >= instead of =>

share|improve this answer

if (u <= 100) charge = u * 1.35; else if (u >= 100 && u <= 200)

share|improve this answer
else if(u=>100&&u<=200)
         ^^-- here 

shouldn't the indicated portion be >=? As well, if that's the entirety of the code, you're missing something for this else if to act on...

if (...) {
   ...
else if (...) {
   you're missing this part here
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.