tim k min de 2^k>N
#include <stdio.h>
#include <conio.h>
#include <math.h>
int main()
{
int k=0;
int n;
printf("Nhap n:");
scanf("%d",&n);
while (pow(2,k) <n) k++;
printf("%d
",k);/*k la so lan thuc hien,*/
getch();
return 0;
}
Bạn đang đọc truyện trên: AzTruyen.Top