PROGRAMOWANIE C++
Jak w c++ zapisać pierwiastek n-tego stopnia?
(bez printf itd. tylko int, cout, cin, double jeśli potrzebne).
biblioteka <cmath>.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <math.h>
#include <iostream.h>
main()
{
double x = 8, y = (1/3);
cout << pow(x,y);
return 0;
}
P.S. to chyba o to chodzi ;)