Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C++ by Profe ( 7 years ago )
#include <iostream>
using namespace std;
int main()
{
int sueldo[5];
for(int x = 0; x<5; x++){
cout<<"Ingrese el sueldo\n";
cin>>sueldo[x];
}
for(int i=0; i<5; i++){
cout<<"Sueldo:\n"<<sueldo[i];
}
cin.get();
cin.get();
}
Revise this Paste