For something like a calculator, I would recommend thinking about it yourself first. A lot can be learnt from your first attempt at designing, developing and debugging a relatively complicated program. You don't need to provide all the functions of a normal calculator to start with - try something easy first:
Enter the first number: 5
Enter the operator: *
Enter the second number: 3
5 * 3 = 15