計算一個數的對數

# include<stdio.h>
# include<stdbool.h>

int main()
{
    int x;
    int ret = 0;
    
    scanf("%d", &x);
    
    int t = x;
    
    while(x>1){
        x/=2;
        ret++;
    }
    
    printf("log2(%d)=%d\n", t, ret);
    
    return 0;
    
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章