struct
#include<iostream>
#include<string>
using namespace std;
struct produkt {
int produktnummer;
int gewicht;
string produktname;
bool lager;
};
produkt stuhl;
produkt pult;
int x;
int main () {
stuhl.gewicht = 10;
stuhl.lager = true;
stuhl.produktname = "Stuhl";
stuhl.produktnummer = 1234;
pult.produktname = "Pult";
pult.gewicht = false;
cout << "Produktname: " << stuhl.produktname << endl;
cout << "Produktnummer: " << stuhl.produktnummer << endl;
cin >> x;
}
