Вычислить в с++ 1) а^3 Помогите пж
#include
int main()
{
float a;
std::cin >> a;
std::cout << pow(a, 3) << std::endl;</p>
return 0;
}