Advertisement
machkovskitomche

lab1/stepen

Aug 10th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<math.h>
  4. int main()
  5. {
  6.     int a,b;
  7.     float rez;
  8.     printf("Vnesete ja osnovata:\t");
  9.     scanf("%d",&a);
  10.     printf("Vnesete go stepenot:\t");
  11.     scanf("%d",&b);
  12.     rez=pow(a,b);
  13.     printf("Brojot %d na stepen %d iznesuva:%f",a,b,rez);
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement