¿Cuál es el error?
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú#include <iostream>
#include <stdio.h>
int main(void)
{
int a,i;
printf("Introduzca el numero: ");
scanf("%d",&a);
for(i=a;i==2;i--)
{
if(a%i==0)
printf("%d",i);
}
cin.get();
return 0;
}
#include <iostream>
#include <string>
#include <stdlib.h>
using namespace std;
struct Employees // struct's name
{
string name;
string sex;
float pay;
};
int main()
{
int number; // # employees
cout << "Enter # Employees: ";
cin >> number;
struct Employees data[number]; // declare data type of Employees
int i;
for(i=0 ; i < number ; i++) // Loop to save all data
{
cout << "Name: ";
cin >> data[i].name;
cout << "Sex: ";
cin >> data[i].sex;
cout << "Payment: ";
cin >> data[i].pay;
}
//Loop to print out
for(i=0 ; i<number ; i++)
{
cout << "\n" << data[i].name << endl;
cout << data[i].sex << endl;
cout << data[i].pay <<"\n\n";
}
system("PAUSE"); // paramos el programa para que no se cierre
return 0;
}