Tue Oct 24 2023 13:25:13 GMT+0000 (Coordinated Universal Time)
Saved by @AdomsNavicki
#include <cmath> #include <iomanip> #include <iostream> using namespace std; int main() { double x; cin >> x; x = pow(x, 3); cout << x; return 0; }
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments