Cita:
Iniciado por Ka0stj Hola QuinteroSaavedra
A lo que se ve en tu código no hay ningún comando de captura y superookie te da una solución con el comando cin a lo que también podrías utilizar el scanf.
En el siguiente enlace viene un ejemplo de captura de datos tanto con cin y scanf.
[url]http://mx.answers.yahoo.com/question/index?qid=20100416200219AAWGN5A[/url]
Estoy leyendo pero en donde defino los int? o como le hago? porque agrego y me da errores :S como quedaria :S
EDITADO YA RESOLVI GRACIAS POR LA AYUDA. ESPERO QUE LES SIRVA A ALGUIEN ;)
Código C:
Ver original#include <iostream>
#include <cstdlib>
#include <conio.h>
using namespace std;
int main()
{
textbackground(BLUE);
clrscr();
textattr((YELLOW<<4)+BLACK);
gotoxy(30,5);
cprintf("PLANILLA DE DATOS");
gotoxy(2,25);
textattr((BLUE<<4)+15);
textbackground(BLACK);
clrscr();
gotoxy(3,6);
textcolor(WHITE);
cprintf("NOMBRE/S:");
gotoxy(22,6);
textattr((GREEN<<4)+WHITE);
cin.get();
textbackground(BLACK);
gotoxy(3,8);
cprintf ("APELLIDO/S:");
gotoxy(22,8);
textattr((GREEN<<4)+WHITE);
cin.get();
textbackground(BLACK);
gotoxy(3,10);
cprintf ("CEDULA:");
gotoxy(22,10);
textattr((GREEN<<4)+WHITE);
cin.get();
textbackground(BLACK);
gotoxy(3,12);
cprintf ("SEXO:");
gotoxy(22,12);
textattr((GREEN<<4)+WHITE);
cprintf ("M:");
gotoxy(24,12);
cin.get();
gotoxy(26,12);
cprintf("/");
gotoxy(28,12);
textattr((GREEN<<4)+WHITE);
cprintf("F:");
gotoxy(30,12);
cin.get();
textbackground(BLACK);
gotoxy(3,14);
cprintf ("FECHA DE NACIMIENT:");
gotoxy(22,14);
textattr((GREEN<<4)+WHITE);
cin.get();
textbackground(BLACK);
gotoxy(3,16);
cprintf("TELEFONO:");
gotoxy(22,16);
textattr((GREEN<<4)+WHITE);
cin.get();
textbackground(BLACK);
gotoxy(3,18);
cprintf ("DIRECCION:");
gotoxy(22,18);
textattr((GREEN<<4)+WHITE);
cin.get();
gotoxy(20,20);
cin.get();
textbackground(BLACK);
return 0;
}