October 2018 1 66 Report

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;
}///;


More Questions From This User See All

HTMLPrzekształć poniższy kod w taki sposób, aby link otwierał się nie tylko po kliknięciu napisu "LINK", ale również po kliknięciu obszaru całej komórki.Kod HTML:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>TYTUŁ</title></head><body bgcolor="black"><meta http-equiv="Content-type" content="text/html; charset=ISO-8859-2" /><link rel="shortcut icon" href="URL"><table style="vertical-align: middle; text-align: center; margin-left: auto; margin-right: auto;" border="0" cellpadding="0" cellspacing="0" width="100%"> <tbody> <tr> <td align="undefined" valign="undefined"> <table style="background-color: rgb(128, 128, 128); width: 95%; margin-left: auto; margin-right: auto;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td bgcolor="#ffffff" onmouseover="this.bgColor='lime'" onmouseout="this.bgColor='#ffffff'" style="width: 25%; text-align: center; vertical-align: top;"> <div style="float:left"><div align="left"> <div style="font-size:14px"><b>X<br> Y<br> <a onclick="this.href='*'">LINK</a></b></div> </div></div> <div style="float:right"><div align="right"> <font style="font-size:7px">&nbsp;</font><br><font style="font-size:30px">Z</font> </div></div> </td> </tr> <tr> <td bgcolor="#ffffff" onmouseover="this.bgColor='lime'" onmouseout="this.bgColor='#ffffff'" style="width: 25%; text-align: center; vertical-align: top;"> <div style="float:left"><div align="left"> <div style="font-size:14px"><b>X<br> Y<br> <a onclick="this.href='*'">LINK</a></b></div> </div></div> <div style="float:right"><div align="right"> <font style="font-size:7px">&nbsp;</font><br><font style="font-size:30px">Z</font> </div></div> </td> </tr> </tbody> </table> </td> </tr> </tbody></table></body></html>
Answer

Recommend Questions



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.