Viết hàm chuyển đổi số nhị phân sang thập phân
Viết hàm Chuyển đổi một số nhị phân thành thập phân
Input 1
10
Output 1
2
Input 2
101
Output 2
5
Input 3
1011
Output 3
11
Viết hàm Chuyển đổi một số nhị phân thành thập phân
10
2
101
5
1011
11
Comments
include <stdio.h>
include <math.h>
int binary_to_decimal(int binary) { int decimal = 0; int i = 0;
}
int main() { int binary_number; printf("Enter a binary number: "); scanf("%d", &binary_number);
}
include <stdio.h>
include <math.h>
int binary_to_decimal(int binary) { int decimal = 0; int i = 0;
}
int main() { int binary_number; printf("Enter a binary number: "); scanf("%d", &binary_number);
}