#include <conio.h>
#include <stdio.h>
#include <iostream.h>
void main()
{
int v[10],a=0, cp=0, f=8;
gotoxy(19,3);cout<<"INSTITUTO TECNOLOGICO SUPERIOR HUAQUILLAS";
gotoxy(32,4);cout<<"...LENIN ZAPATA....";
gotoxy(17,5);cout<<"VECTOR QUE DETERMINA SI UN NUMEROS ES PRIMOS";
gotoxy(5,7);cout<<"Llene el vector";
for(int i=0; i<=9; i++)
{
gotoxy(5,f);cin>> v[i];
for(int e=1; e<= v[i]; e++)
{
if(v[i] % e == 0)
{
a = a+1;
}
}
if(a == 2)
{
cp++;
gotoxy(7,f);cout<<" <-- numero primo \n";
}
f++; a=0;
}
f++; gotoxy(6,f);cout<<" Usted ha ingresado "<<cp<<" numeros primos!!.";
getch();
}
No hay comentarios:
Publicar un comentario