Đề bài:Viết chưong trình chuyển từ hệ 10 sang hệ 2.
Thank trước nha.
Thank trước nha.
#include <stdio.h>
int convert(int i)
{
if (i > 0)
{
convert (i/2);
printf("%d",i%2);
}
}
void main()
{
int i;
printf("Input: ");
scanf("%d",&i);
convert(i);
}
Comment