Advertisement
Guest User

hatvany

a guest
Nov 25th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5. int a;
  6. int b;
  7. int c=1;
  8. cout<<"Adja meg az alapot!: ";
  9. cin>>a;
  10. cout<<"Adja meg a hatvanykitevot!: ";
  11. cin>>b;
  12.  
  13. for (int i=1;i<=b;i++)
  14. {
  15. c=c*a;
  16. }
  17. cout<<c;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement