Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Hi! I found one problem with bmi = 30. In instruction was that equals to overweight. ((bmi<= 30)=overweight). So, everything upper than 30 (without 30, because it is in overweight class) will be obese. Right notatnion of that will be ((bmi > 30)=obese). I don't know why my code run only when ((bmi > 30.1)=obese). Please, can someone explain it to me? (I wrote it in c++)