Buenas Disculpen como haria para hacer una planilla de datos? :S tengo un modelo que hize pero no se le pueden ingresar datos
Código HTML:
#include <iostream>
#include <cstdlib>
#include <conio.h>
using namespace std;
int main(int argc, char *argv[])
{
textbackground(BLACK);
clrscr();
gotoxy(3,6);
textcolor(WHITE);
cprintf ("NOMBRE/S:\n");
gotoxy(22,6);
textattr((GREEN<<4)+WHITE);
cprintf("______________________________________\n");
textbackground(BLACK);
gotoxy(3,8);
cprintf ("APELLIDO/S:\n");
gotoxy(22,8);
textattr((GREEN<<4)+WHITE);
cprintf("______________________________________\n");
textbackground(BLACK);
gotoxy(3,10);
cprintf ("CEDULA:\n");
gotoxy(22,10);
textattr((GREEN<<4)+WHITE);
cprintf("________\n");
textbackground(BLACK);
gotoxy(3,12);
cprintf ("SEXO:\n");
gotoxy(22,12);
textattr((GREEN<<4)+WHITE);
cprintf("__\n");
gotoxy(26,12);
cprintf("__\n");
textbackground(BLACK);
gotoxy(3,14);
cprintf ("FECHA DE NACIMIENT:\n");
gotoxy(22,14);
textattr((GREEN<<4)+WHITE);
cprintf("__________\n");
textbackground(BLACK);
gotoxy(3,16);
cprintf("TELEFONO:");
gotoxy(22,16);
textattr((GREEN<<4)+WHITE);
cprintf("__________\n");
textbackground(BLACK);
gotoxy(3,18);
cprintf ("DIRECCION:\n");
gotoxy(22,18);
textattr((GREEN<<4)+WHITE);
cprintf("______________________________________\n");
gotoxy(20,20);
cprintf("________________________________________\n\n\n\n\n");
textbackground(BLACK);
system("PAUSE");
return 0;
}
Repito necesito poder ingresar los datos... como haria?, intente con otros codigos pero me borra los demas caracteres :S... necesito ayuda
PD: Estoy trabajando con DEV-C++