指数構文を使う (C++)
C++
Published: 2019-12-22

やったこと

指数構文の e を使って数字を表示してみます。

確認環境

$ g++ --version
g++ (Homebrew GCC 9.2.0) 9.2.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

調査

test.cpp

#include <bits/stdc++.h>
using namespace std;

int main() {
    cout << 1e3 << endl;
    cout << 0.123e2 << endl;
}

出力結果

1000
12.3

参考