Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Made by Joze Strozer */
- #include <stdio.h>
- #include <stdlib.h>
- #include <ctype.h>
- #include <string.h>
- #include <math.h>
- int main()
- {
- float eksponent;
- float stopnja;
- int result;
- printf("Eksponent - ");
- scanf(" %f", &eksponent);
- printf("Stopnja - ");
- scanf(" %f", &stopnja);
- printf("Rezultat - %.0f", pow(eksponent, stopnja) );
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement