void main ()
{
int num,
suma = 0;
gotoxy(19,3);cout<<"INSTITUTO
TECNOLOGICO SUPERIOR HUAQUILLAS";
gotoxy(31,4);cout<<"...LENIN
ZAPATA....";
gotoxy(30,6);cout<<"SUMA
DE TRES MUMEROS.";
gotoxy(15,8);cout<<"INGRESE
3 NUMEROS:";
for(int i = 1 ; i<=3 ; i++)
{
gotoxy(15,10+i);cout<<"Numero " <<
i<<": ";cin>> num;
suma = suma + num;
}
gotoxy(16,15);cout<<" La suma es:
" << suma;
getch();
}
No hay comentarios:
Publicar un comentario