#include <conio.h>
#include <stdio.h>
#include
<iostream.h>
//CLEAR UN
VECTOR DE 10 ELEMENTOS, PRESENTE UN SEGUNDO VECTOR QUE CONTENGA EL
//RESULTADO
AL CUADRADO DEL PRIMER VECTOR Y PRESENTE EN UN TERSER VECTOR EL
//RESULTADO
AL CUADRADO DEL SEGUNDO VECTOR.
void main()
{
int
v1[10],v2[10],v3[10],f=10,ff=10,ii=1;
gotoxy(5,2);
cout<<"INSTITUTO TECNOLOGICO SUPERIOR HUAQUILLAS";
gotoxy(5,3);
cout<<"ESTUDIANTE: RUSBERTH LENIN ZAPATA MORALES";
gotoxy(35,5);
cout<<"30-JUN-2016";
gotoxy(5,8);
cout<<" LLENE EL VECTOR #1";
gotoxy(30,8);
cout<<" VECTOR #2";
gotoxy(51,8);
cout<<" VECTOR #3";
for(int i=0;i<=9; i++)
{
gotoxy(5,f); cout<<ii<<".-";ii++;
gotoxy(13,f); cin>>v1[i];
v2[i]=v1[i]*v1[i];
v3[i]=v2[i]*v2[i];
f++;
}
for(int i=0;i<=9; i++)
{
gotoxy(20,ff);cout<<"------>";
gotoxy(43,ff);cout<<"------>";
gotoxy(35,ff);cout<<v2[i];
gotoxy(55,ff);cout<<v3[i];
ff++;
}
getch ();
}
No hay comentarios:
Publicar un comentario