I\'m writing a Java program to calculate how much food it will take to get a monster to a certain level in My Singing Monsters. When I run the program, it says, \"cannot con
Math.pow return double and you assigning double value to int this is why it is giving error. You have to downcast it. Like
int levelMeal = (int)5*(Math.pow(2,level-1));