while (n > 0) {
if (n & 1)
ans = ans * a;
a = a * a;
n >>= 1;
}
'개발' 카테고리의 다른 글
자바스크립트의 신기한 기능들 (0) | 2021.08.22 |
---|---|
OpenCV에서 height, width (0) | 2019.12.01 |
About Mathematics Behind Large Margin Classification Quiz (0) | 2019.09.30 |
국어 수능 완성 1회차 (0) | 2019.07.24 |
float4에서 w의 의미(feat. 동차좌표계) (0) | 2019.05.07 |
decltype (0) | 2019.05.05 |
댓글