在Xcode 4.5中取平方根

时间:2013-03-02 17:51:19

标签: ios6 xcode4.5

我需要在xcode 4.5中取得函数输出的平方根。当我使用sqrt()时,它不起作用。有什么想法吗? 这是我的代码:

- (IBAction)calculateFinalVelocity:(id)sender {
    float ourOutput = sqrt(([[_initialVelocity text] floatValue] * [[_initialVelocity text] floatValue]) + (2.00 * [[_acceleration text] floatValue] * ([[_finalDisplacement text] floatValue] - [[_finalDisplacement text] floatValue])));


    NSNumber *ourNumber = [NSNumber numberWithFloat:ourOutput];

    [_outputFinalVelocity setText:[ourNumber stringValue]];


}

0 个答案:

没有答案