Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 171 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 171 Bytes

3.25

long loop_while2(long a, long b) {
    long result = b;
    while (b > 0) {
        result =  result * a;
        b = b - a;
    }
    return result;
}