#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int i=1,n,k=0;
printf("정수 한개 입력 : ");
scanf("%d",&n);
while(i<=n)
{
k++;
i=i*2;
}
printf("공식을 만족하는 k의 최댓값은 %d\n",k-1);
system("pause");
return 0;
}
2014.02.22 12:18
n을 입력하여 2의 k승이 n보다 작거나 같은 조건을 만족하는 k의 최댓값 구하기
조회 수 3316 추천 수 0 댓글 0