January 2019 1 48 Report
Jak zmienić podany program,żeby wyświetlała mi się możliwość wprowadzania na raz kilka podanych danych ??

#include
#include
using namespace std;
struct Samochody

{
char marka[15];
char kolor[15];
int rok_produkcji;
char przebieg[15];
}
S;
int main()
{
cout<<"Podaj marke:";
cin>>S.marka;
cout<<"Podaj kolor:";
cin>>S.kolor;
cout<<"Podaj rok_produkcji:";
cin>>S.rok_produkcji;
cout<<"Podaj przebieg:";
cin>>S.przebieg;


system("pause");
return 0;
}
More Questions From This User See All

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.