ios 科學計數法,保留n個有效值

2021-06-03 12:14:59 字數 1036 閱讀 7372

/*

科學計數法,保留n個有效值

*/-(nsstring *) toexponent:(double)d rms:(unsigned)n

cflocaleref currentlocale = cflocalecopycurrent();

cfnumberformatterref customcurrencyformatter = cfnumberformattercreate

(null, currentlocale, kcfnumberformattercurrencystyle);

nsstring *s_n = @"#";

if(n > 1)

else}}

cfnumberformattersetformat(customcurrencyformatter, (cfstringref)s_n);

double i=1;

int exponent = 0;

while (1)

}double n1 = d * 10 / i;

cfnumberref number1 = cfnumbercreate(null, kcfnumberdoubletype, &n1);

cfstringref string1 = cfnumberformattercreatestringwithnumber

(null, customcurrencyformatter, number1);

nsstring * result = [nsstring stringwithformat:@"%s e%d",cfstringgetcstringptr(string1, cfstringgetsystemencoding()),exponent];

cfrelease(currentlocale);

cfrelease(customcurrencyformatter);

cfrelease(number1);

cfrelease(string1);

return result;

}

科學計數法

在做專案時發現乙個比較頭痛的問題,輸入法輸入金額android inputtype numberdecimal 控制項是可以輸入000.123的,為了獲取正確的輸入值可以使用下面方法,當輸入的資料很長時也不會被用科學計數法顯示 string str 000.123 bigdecimal bigdec...

科學計數法 20

時間限制 1000 ms 記憶體限制 32768 kb 長度限制 100 kb 判斷程式 standard 來自 小小 現以科學計數法的格式給出實數a,請編寫程式按普通數字表示法輸出a,並保證所有有效位都被保留。每個輸入包含1個測試用例,即乙個以科學計數法表示的實數a。該數字的儲存長度不超過9999...

科學計數法 PAT

科學計數法是科學家用來表示很大或很小的數字的一種方便的方法,其滿足正規表示式 1 9 0 9 e 0 9 即數字的整數部分只有 1 位,小數部分至少有 1 位,該數字及其指數部分的正負號即使對正數也必定明確給出。現以科學計數法的格式給出實數 a,請編寫程式按普通數字表示法輸出 a,並保證所有有效位都...