2025年1月4日 星期六

fixed 印出小數點部份

the 1st edition: 20210415
對「Re: [討論] 請大家聊聊 JavaScript的缺陷」這問題很好奇, c++ 也有類似的情形。

這邊可以測試 js:
https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_tofixed

a.cpp 感謝 cschat lan* 提供
 1 #include <iostream>
 2 #include <string>
 3 #include <cmath>
 4 using namespace std;
 5 
 6 int main(int argc, char *argv[])
 7 {
 8   std::cout.precision(2);
 9   cout << fixed << 0.005 << endl;
10   cout << 0.015 << endl;
11   return 0;
12 }


a.cpp 執行結果
0.01
0.01


ref:

沒有留言:

張貼留言

使用 google 的 reCAPTCHA 驗證碼, 總算可以輕鬆留言了。

我實在受不了 spam 了, 又不想讓大家的眼睛花掉, 只好放棄匿名留言。這是沒辦法中的辦法了。留言的朋友需要有 google 帳號。