чуть-чуть пофиксил вывод
parent
62bff485aa
commit
ad6ce4a61c
|
@ -323,10 +323,10 @@ void deleteElementFromDB(DataBaseElement* elem)
|
|||
|
||||
void printElement(DataBaseElement* elem)
|
||||
{
|
||||
printf("Element:\n\tName: %s %s\n\tCourse: %d, lab N%d\n\t",
|
||||
printf("Element:\n\tfirst_nm=%s\n\tlast_nm=%s\n\tcurse_id=%d\nlab_id=%d\n\t",
|
||||
elem->first_nm, elem->last_nm, elem->curse_id, elem->lab_id);
|
||||
printf("%s\t", asctime(gmtime(&(elem->start_tm))));
|
||||
printf("%s\tResults\n", asctime(gmtime(&(elem->end_tm))));
|
||||
printf("start_tm=%s\t", asctime(gmtime(&(elem->start_tm))));
|
||||
printf("end_tm%s\tResults\n", asctime(gmtime(&(elem->end_tm))));
|
||||
for (int i = 0; i < 99; i++)
|
||||
{
|
||||
printf("%d ", elem->result[i]);
|
||||
|
|
Loading…
Reference in New Issue