program w C++ potęgujący dowolną liczbę o dowolnym wykładniku.
#include <iostream>#include <math.h>using namespace std;int main(){ int a,b; cout << "a^b :: \n"; cout << "Podaj liczbe: "; cin >> a; cout << "Podaj potege: "; cin >> b; cout << pow(a,b); getchar(); getchar(); return 0; }
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
#include <math.h>
using namespace std;
int main(){
int a,b;
cout << "a^b :: \n";
cout << "Podaj liczbe: "; cin >> a;
cout << "Podaj potege: "; cin >> b;
cout << pow(a,b);
getchar();
getchar();
return 0;
}