#include <iostream>
#include <string>
usingnamespace std;
struct Wgwagner
{
string fullname;
unsignedint ZimNum;
string Stdgg;
};
int main()
{
Wgwagner personel[3];// Adjust the 3, to how many you need
for (int x = 0; x < 3; x++) // Adjust the 3, to same as struct number
{
cout << "Enter name #" << x + 1 << " : ";
getline(cin, personel[x].fullname);
cout << "Enter ZimNum " << x + 1 << " : ";
cin >> personel[x].ZimNum;
cin.ignore(10, '\n');
cout << "Enter Stdgg #" << x + 1 << " : ";
getline(cin, personel[x].Stdgg);
cout << endl;
}
cout << endl << endl;
for (int x = 0; x < 3; x++) // Adjust the 3, to how many you need to print out
{
cout << personel[x].fullname << " " << personel[x].ZimNum << " " << personel[x].Stdgg << endl;
}
return 0;
}