Lots of careless mistakes.
The compiler is telling you everything that is wrong.
Line 99: You need to use " not ' for quoted literals.
Line 103: ditto
Line 111: You need to specify a subscript. You can't imply the whole array. Mixing << and >> in the same statement.
Line 114: Your braces don;t match up. You're missing a {
Line 118: Your quotes are in the wrong place. You need to specify a subscript.
Line 130: You need a single space between the single quotes.
Line 146: Needs a ;
Line 148: minAmountOS should have (), not [] and not have a 0 or ;
Line 159: Wrong brace. Should be }
Line 152,154,157: mini is not defined.
Line 163: I assume you menat =, not -.
Line 164: need = and < in for statement.
Line 168: Can't use i here. i went out of scope when the for loop ended.
Line 179: Parentheses are not balanced in the if statement.
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/