#include <iostream.h>#include <conio.h>#include <math.h>float n,p;double pierwiastek(double n) {p=pow(n, 0.5);return p;}int main() {cout << "Podaj liczbe, ktora chcesz pierwiastkowac:" << endl;cin >> n;pierwiastek(n);cout << "Pierwiastek z " << n << " wynosi: " << p;getch();return 0;}
Jest wykorzystana funkcja "pierwiastek".
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream.h>
#include <conio.h>
#include <math.h>
float n,p;
double pierwiastek(double n) {
p=pow(n, 0.5);
return p;
}
int main() {
cout << "Podaj liczbe, ktora chcesz pierwiastkowac:" << endl;
cin >> n;
pierwiastek(n);
cout << "Pierwiastek z " << n << " wynosi: " << p;
getch();
return 0;
}
Jest wykorzystana funkcja "pierwiastek".