We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93cfae5 commit dbd3566Copy full SHA for dbd3566
reference/cmath/double_t.md
@@ -15,6 +15,20 @@ namespace std {
15
16
[`FLT_EVAL_METHOD`](/reference/cfloat/flt_eval_method.md) が 0 または 1 のとき `double`, 2 のとき `long double`, それ以外の場合は実装依存。
17
18
+## 使用例
19
+```cpp example
20
+#include <cmath>
21
+#include <iostream>
22
+int main() {
23
+ std::double_t num = 1.00001;
24
+ std::cout << num << std::endl;
25
+}
26
+```
27
+
28
+## 出力例
29
30
+1.00001
31
32
33
## バージョン
34
### 言語
0 commit comments