Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- // binariando
- int main(void)
- {
- int dec=1024,i,x[15];
- printf("%d %d \n",dec/10,dec%10);
- for (i=0;i<15;i++)
- {
- // printf("%d \t",dec%10);
- // imprime o número ao contrário => como resolver? armazenar num vetor
- x[i]=dec%2;
- dec=dec/2;
- }
- for(i=14;i>=0;i--)
- printf("%d",x[i]);
- printf("\n");
- return 0;
- }
- // 1. declarar os valores de x
- // 2. armazenar num vetor
- // 3. imprimir em ordem reversa
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement