Updated and create q3
This commit is contained in:
parent
139b370552
commit
094998cc79
35
work1/q3.c
35
work1/q3.c
@ -4,12 +4,15 @@
|
|||||||
|
|
||||||
#define DEPOT_SIZE 10
|
#define DEPOT_SIZE 10
|
||||||
|
|
||||||
struct Bus {
|
struct Bus
|
||||||
|
{
|
||||||
int BusID;
|
int BusID;
|
||||||
int RouteID;
|
int RouteID;
|
||||||
time_t schedule;
|
time_t schedule;
|
||||||
} Depot[DEPOT_SIZE];
|
} Depot[DEPOT_SIZE];
|
||||||
|
|
||||||
|
typedef enum { true, false } bool;
|
||||||
|
|
||||||
void createBuses();
|
void createBuses();
|
||||||
void printBuses();
|
void printBuses();
|
||||||
void scheduleBuses();
|
void scheduleBuses();
|
||||||
@ -17,12 +20,34 @@ void alignupBuses();
|
|||||||
void releaseBuses();
|
void releaseBuses();
|
||||||
void emergency();
|
void emergency();
|
||||||
|
|
||||||
int main() {
|
// utils variable
|
||||||
|
bool has_created = false;
|
||||||
|
|
||||||
|
// utils function
|
||||||
|
print_depot(struct Bus *depot);
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
void createBuses() {
|
void createBuses()
|
||||||
// do something
|
{
|
||||||
|
for (int i = 0; i < DEPOT_SIZE; i++)
|
||||||
|
{
|
||||||
|
Depot[i].BusID = i + 1;
|
||||||
|
Depot[i].RouteID = 1000 + (i + i);
|
||||||
|
}
|
||||||
|
|
||||||
|
has_created = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
print_depot(struct Bus *depot) {
|
||||||
|
int size = sizeof(depot) / sizeof(depot[0]);
|
||||||
|
|
||||||
|
printf("\n Depost size: %d", size);
|
||||||
|
for (int i = 0; i < size; i++) {
|
||||||
|
printf("Bus ID: %d\n", depot[i].BusID);
|
||||||
|
printf("Route ID: %d\n", depot[i].RouteID);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user