Line 26,27: You're declaring these functions as global, but you have no global implementation of these functions. You've declared them as member functions. Get rid of these two lines.
Line 45,58: Function calls require ().
Line 65,86: class name is movie, not mymovie.
Line 70,80,82: needs a ;
Line 72,74,,76,78,80,87: member variables do not need to be qualified by the class name.
Line 85: If the rating is input on the second attempt, you don't edit check it. Nor does the rating get computed.
PLEASE USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post.
http://www.cplusplus.com/articles/jEywvCM9/
Hint: You can edit your post, highlight your code and press the <> formatting button.