Guest User

Untitled

a guest
Jan 16th, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #include<stdio.h>
  2. void main()
  3. {
  4. int inputan;
  5. int i;
  6. int power;
  7. int hasil=1;
  8. printf("masukan bilangan :");scanf("%d",&inputan);
  9. printf("masukan pangkat :");scanf("%d",&power);
  10.  
  11. if (inputan == 0)
  12. {
  13. printf("%d",inputan);
  14. }
  15. else if(inputan == 1)
  16. {
  17. printf("%d",inputan);
  18. }
  19. else
  20. {
  21. for (i=1; i<=power; i++)
  22. {
  23. hasil*=hasil;
  24. {
  25. printf("%d\n",hasil);
  26. }
  27. }
  28. }
  29. }
Add Comment
Please, Sign In to add comment