Chuyển số thập phân sang nhị phân
Submit solution
Points:
1 (partial)
Time limit:
1.0s
Memory limit:
537M
Problem type
Allowed languages
C, C++, Python
Viết chương trình nhập vào một số nguyên n gồm tối đa 10 chữ số (4 bytes). In ra màn hình giá trị nhị phân của số trên.
Input 1
3
Output 1
11
Input 2
6
Output 2
110
Comments
include<stdio.h>
void gg(int n){ int binary[100]; int i = 0; while(n>0){ binary[i] = n%2; n = n/2; i++; } for(int j = i - 1;j>=0;j--){ printf("%d", binary[j]); } } int main(){ int n; scanf("%d", &n); gg(n); return 0; }