fork download
  1. #include <iostream>
  2. #include <cmath>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7. double wynik = 5.123 * pow(10, -1) * 4.987 * pow(10, 2);
  8. cout << "Wynik: " << wynik << endl;
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
Wynik: 255.484