Negatives in while statement

Hey guys, how would I make whatever number that goes in the parenthesis that equals negative quit the program?
 
  while (tuition != -)


Thanks!
I believe what you're looking for is

while (tuition >= 0)
Topic archived. No new replies allowed.