Actividades del trabajador social en secundaria
/* PROGRAMA QUE CONVIERTE NUMEROS DE BASE DECIMAL*/
/* A NUMEROS DE BASE 2, 8, 16*/
#include"stdio.h"
#include"conio.h"
int menu()
{ clrscr(); int op; clrscr(); printf("ESCRIBE EL 1 PARA CONVERTIR DEC-BIN, 2 PARA DEC-OCTAL,"); printf("3 PARA DEC-HEX, 4 SALIR:"); scanf("%d",&op); return op;
}
void binario()
{
/*PROGRAMA QUE CONVIERTE UN NUMERO DECIMAL A BINARIO*/
int num,y=0,x=0,divi,resi[30]; clrscr(); printf("ESCRIBE EL NUMERO DECIMAL:"); scanf("%d",&num); do{ divi=num/2; resi[x]=num%2; num=divi; x++;
}while(num>0);
printf("\nbinario: "); for(y=x-1;y>=0;y--) printf("%d",resi[y]); printf("(2)"); getch();
}
void octal()