私は数学方程式を解くプログラムをここに持っています: (3.31 * 10 の -8 乗 + 2.01 * 10 の -7 乗)/(7.16 * 10 の -6 乗 + 2.01 * 10 の -8 乗) ……しかし、俺のアウトプットはいつもナン!理由を教えてください。修正を手伝ってください。
int a = 10;
int b = -10;
//10 to the -8 power below
float ab = 1 / (a * b * b * b * b * b * b * b) ;
//10 to the -7 power below
float ba = 1 / (a * b * b * b * b * b * b) ;
//10 to the -6 power below
float abc = 1 / (a * b * b * b * b * b) ;
//equation below
double conclusion = (3.31 * ab + 2.01 * ba) / (7.16 * abc + 2.01 * ab);
NSLog(@"the answer to the equation is %f",conclusion);