Реализовать класс Goods, добавив поле-дату поступления товара на склад[help]
Если у кого-нибудь есть свободное время, то посмотрите её пожалуйста.
Вот условие: реализовать класс Goods, добавив поле-дату поступления товара на склад (использовать класс Date из задания 29). Реализовать метод, вычисляющий срок хранения товара.
Вот код:
Код:
#include "StdAfx.h"
#include <iostream>
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
#include "locale"
using namespace std;
class date
{
public:
void settime(int g, int m, int d)
{god = g; mes = m; day = d;}
void settime(const date &t);
void Display() const;
int god, mes, day;
};
class goods
{
public:
void setgoods(int n, date d, int c, int s)
{name = n; dat = d; cena = c; sr = s;}
void setgoods(const goods &t);
void Display() const;
int name, cena, sr;
date dat;
};
void goods::setgoods(const goods &t)
{
name = t.name;
dat = t.dat;
cena = t.cena;
sr = t.sr;
}
void goods::Display() const
{
printf("Наименование -", name);
printf("Дата", dat);
printf(" - ", cena);
printf(" ", sr);
}
void date::settime(const date &t)
{
god = t.god;
mes = t.mes;
day = t.day;
}
void date::Display() const
{
cout <<"Дата - "<<this -> god<<"."<<this -> mes<<"."<<this -> day;
}
int main()
{
setlocale(LC_ALL, "Russian");
date t;
goods e;
int g,m,d,zn;
cout << "Введите год - " ; cin >> t.god;
cout << "Введите месяц - "; cin >> t.mes;
cout << "Введите число - "; cin >> t.day;
cout<<"\n";
t.settime(t.god, t.mes, t.day);
e.Display();
cout<<"\n";
getch();
return 0;
}
#include <iostream>
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
#include "locale"
using namespace std;
class date
{
public:
void settime(int g, int m, int d)
{god = g; mes = m; day = d;}
void settime(const date &t);
void Display() const;
int god, mes, day;
};
class goods
{
public:
void setgoods(int n, date d, int c, int s)
{name = n; dat = d; cena = c; sr = s;}
void setgoods(const goods &t);
void Display() const;
int name, cena, sr;
date dat;
};
void goods::setgoods(const goods &t)
{
name = t.name;
dat = t.dat;
cena = t.cena;
sr = t.sr;
}
void goods::Display() const
{
printf("Наименование -", name);
printf("Дата", dat);
printf(" - ", cena);
printf(" ", sr);
}
void date::settime(const date &t)
{
god = t.god;
mes = t.mes;
day = t.day;
}
void date::Display() const
{
cout <<"Дата - "<<this -> god<<"."<<this -> mes<<"."<<this -> day;
}
int main()
{
setlocale(LC_ALL, "Russian");
date t;
goods e;
int g,m,d,zn;
cout << "Введите год - " ; cin >> t.god;
cout << "Введите месяц - "; cin >> t.mes;
cout << "Введите число - "; cin >> t.day;
cout<<"\n";
t.settime(t.god, t.mes, t.day);
e.Display();
cout<<"\n";
getch();
return 0;
}
- В чём заключается проблема? от CassandraDied, 26 июня 2013 года
Up.
Все присутствующие тут же кинулись разбираться в «классе Date из задания 29»...
Цитата: Filippo4ek
Up.
............... И тигры у ног моих сели.
t.settime(t.god, t.mes, t.day);
e.Display(); \\ добавить соответствующую функцию!!!
cout<<"\n";
Я не шарю в этом, код помогали писать и то не дописали. Но всё равно спасибо.