請,我有這個公式在這裏:公式中的ios應用程序如何創建它
=((r/100/12)*amt)/(1-((1+(r/100/12)^(-period)))
有人能幫助我如何將它轉換爲目標C公式中? 我需要最終的公式..
我用什麼:
double int_ = ([Norma_value floatValue]/100)/12;
double months = -[kohezgjatja_value floatValue];
double r1 = pow(int_, months);
double pt1 = 1 + r1;
double pt2 = 1- pt1;
double pmt = ([shuma_value floatValue]* int_)/pt2;
balanca.text = [NSString stringWithFormat:@"%.02f €",pmt];
沒有什麼做除了定義'r','AMT '和'句點'的正確類型(整數或浮點數)並賦值給它們。 – trojanfoe
假設你的意思是'用'^來強化',你應該改變的唯一的東西就是那個符號,並且在@trojanfoe指出什麼之後加上'pow(double,double)'。 – fguchelaar
但是^工作?是不是需要一個pow函數?.. –