Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by boeselan ( 15 years ago )
void setup() {
...
int result = power(a, b);
println("Die Potenz von ..." + ...);
}
int power(int a, int b) {
if(a == 0) {
...
}
if(b == 0) {
...
}
...
for( ... )
{ p *= a;
}
...
}
Revise this Paste