cara menghitung 2^7 dalam kode CPP

while (exponent != 0) {
    result *= base;
    --exponent;
}
Dead Dragonfly