Завдання:
Програма створює клас dog, у якому є декілька полів даних і функція show_breed. Програма створює два об’єкта типу dog, а тоді виводить інформацію про собак на екран.
#include <iostream.h>
#include <string.h>
class dogs
{
public:
char breed[64];
int average_weight;
int average_height;
void show_breed(void) ;
};
void dogs::show_breed(void)
{
cout << "Poroda: " << breed << endl;
cout << "Serednia vaga: " << average_weight << endl;
cout << "Serednij rist: " << average_height << endl;
}
void main(void)
{
dogs happy, matt;
strcpy(happy.breed, "Cappi") ;
happy.average_weight = 58;
happy.average_height = 24;
strcpy(matt.breed, "Kolli");
matt.average_weight =22;
matt.average_height = 15;
happy.show_breed() ;
matt.show_breed();
}
Результати виконання програми:
Poroda: Dolmatyn
Serednia vaga: 58
Serednij rist: 24
Poroda: Kolli
Serednia vaga: 22
Serednij rist: 15