Answer the question
In order to leave comments, you need to log in
How to competently implement decomposition?
I started to study OOP in C ++, I faced the following task:
Purpose of the work: Obtaining the skills of modular decomposition of the subject area, creating modules. Interface development.
Task: Develop a program consisting of three modules in accordance with the specified version of the task. The first module is the main program code; the second contains interfaces; the third module is the implementation of these interfaces. The number of data structures ("objects") is at least five.
EXAMPLE
Let it be required to develop the program "Clock". The time is stored in the TTime structure (hours, minutes, seconds), which in turn is part of the Date structure. Methods allow you to change the current time and display the time on the screen.
typedef struct ttime {
int hours; int minute; int sec;
};
struct date {
ttime time;
void settime(int, int, int);
void printtime();
};
#include <stdio.h>
#include "date.h"
void date::settime(int h, int m, int s)
{
time.hours = h;
time.minute = m;
time.sec= s;
}
void date::printtime()
{
printf("%i:%i:%i", time.hours, time.minute, time.sec);
}
#include <stdio.h>
#include "date.h"
int main()
{
date a;
a.settime(23,43,10);
a.printtime();
getchar();
return 0;
}
Answer the question
In order to leave comments, you need to log in
typedef struct ttime {
C, ++ doesn't need a typedef.
And finally use code tags.
Strange naming, they usually write hour.
struct date {
ttime time;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question