| 2 | #include <iomanip> |
| 3 | using namespace std; |
| 4 | int main() |
| 5 | { |
| 6 | float f1 = 1.2f; |
| 7 | float f2 = f1 * 1000000000000000; |
| 8 | cout << std::fixed << std::setprecision(15) << f1 << endl; |
| 9 | cout << std::fixed << std::setprecision(1) << f2 << endl; |
| 10 | return 0; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected