Think practically...do you throw away remaining cookies?? I guess you don't need to round off the no. of boxes/cases.
Lets take a small example. Say the #ofCookies = 25. Then how many boxes do you need to cover all the cookies? Well, you need 3. Two boxes will contain 10 cookies each and one box will hold the remaining which is 5.
Now ask your professor whether he meant that each box will contain at most 10 cookies or exactly 10 cookies. I believe he meant the former.
In that case your output must be:
#ofBoxes = 3
#ofCases = 0
But in case he meant the latter, then you are absolutely right. But then it makes the program too simple and I don't think he wanted you to do simple divisions. And, btw you don't even have to use math.round(), just simply using ints will do the trick.
But think about it, the way you would have done in a practical situation.
Good luck.