Expoente

Run Settings
LanguageC
Language Version
Run Command
#include <stdio.h> int expoente(int a, int b){ int c=a; for(int i=1;i<b;i++){ a=c*a; } return a; } int main(void) { int pot, A, B; scanf("%d %d", &A, &B); pot=expoente(A,B); printf("%d\n", pot); return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines