C++Zmodyfikuj poniższy kod tak, aby prawidłowo wyświetlał dane wyjściowe dla poszczególnych grup danych wejściowych:#include"../std_lib_facilities.h"#include<string>struct sprzet{ int dyskgb,ramgb,jmcd,ggb; string firmanazwa;};int main(){ system("chcp 1250"); int dysk,ram,jm,gg,i,n; string firma; sprzet grupa; cout<<endl<<endl<<" ==ZESTAWIENIE SPRZĘTÓW KOMPUTEROWYCH=="<<endl<<endl<<endl; cout<<"Podaj ilość sprzętów do zapamiętania (od 1 do 4): "; cin>>n; if(n<1)return false; if(n>4)/*{*/return 0/*}*/; cout<<endl; for(i=0;i<n;i++) { cout<<endl<<"Podaj dane "<<i+1<<". sprzętu"<<endl; cout<<"Pojemność dysku [GB]: "; cin>>dysk; grupa.dyskgb=dysk; cout<<"Pamięć RAM [GB]: "; cin>>ram; grupa.ramgb=ram; cout<<"Jasność monitora [cd]: "; cin>>jm; grupa.jmcd=jm; cout<<"Głośność głośników [B]: "; cin>>gg; grupa.ggb=gg; cout<<"Producent komputera [nazwa firmy]: "; cin>>firma; grupa.firmanazwa=firma; }//; cout<<endl<<endl; cout<<"Dane sprzętów komputerowych."<<endl<<endl; for(i=0;i<n;i++) { cout<<endl<<"Dane "<<i+1<<". sprzętu:"<<endl; cout<<"Producent komputera: "<<grupa.firmanazwa<<endl; cout<<"Pojemność dysku [GB]: "<<grupa.dyskgb<<endl; cout<<"Pamięć RAM [GB]: "<<grupa.ramgb<<endl; cout<<"Jasność monitora [cd]: "<<grupa.jmcd<<endl; cout<<"Głośność głośników [B]: "<<grupa.ggb<<endl; }/*;*/ cout<<endl<<endl<<" Wykonanie: XYZ."<<endl<<endl<<endl;; //cout<<" ©, ®."<<endl<<endl<<endl; system("pause"); return 0;}///;
Answer

Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.