在 Dart 中是否有比以下(下)更好的数学方法将数字乘以 10 n 倍。我不想使用数学库,因为它会矫枉过正。没什么大不了的;但是,如果有比“for循环”更好(更优雅)的方式,最好是一行,我想知道。
int iDecimals = 3;
int iValue = 1;
print ("${iValue} to power of ${iDecimals} = ");
for (int iLp1 = 1; iLp1 <= iDecimals; iLp1++) {
iValue *= 10;
}
print ("${iValue}");