mirror of
https://github.com/lcbcFoo/ReonV.git
synced 2025-04-24 13:39:10 -04:00
18 lines
207 B
C
18 lines
207 B
C
int mul();
|
|
|
|
void _start(){
|
|
int i = 1;
|
|
int count = 0;
|
|
|
|
// Multiplies i by 4
|
|
do{
|
|
i = mul(i,4);
|
|
count++;
|
|
}while(i < 2500);
|
|
}
|
|
|
|
int mul(int i,int j){
|
|
if (i == 0)
|
|
return 0;
|
|
return mul(i - 1,j) + j;
|
|
}
|