Obj-C Calculator - Radians to Degrees

前端 未结 5 1941
孤街浪徒
孤街浪徒 2021-01-21 11:26

I\'ve been watching the Stanford CS193P lectures and I\'ve been working on the assignment calculator. I got through the first assignment fairly easily, and I\'m trying to do the

5条回答
  •  说谎
    说谎 (楼主)
    2021-01-21 12:10

    Try this - It works for me:

        if ([operation isEqual:@"sin"])
        {
            operand = (operand * M_PI/180); // first convert the operand from radians to degrees then perform the operation
            operand = sin(operand);
        }
    

    Hope this helps

提交回复
热议问题