Пушков Федор

Подсчёт фраз (Задача 1). Ok.

Код - Ok.

    do {
        getline(is, str);
        phrase = phrase + " " + str;
    } while (is.get() != '\n');


    string word;
    istringstream iss(phrase, istringstream::in);
    while (iss >> word) {
        words.push_back(word);
    }
./lab1 - < funct.cpp
Too much arguments

Тесты - В процессе.

repo

(проверено 7 янв)

Календарь (Задача 2). Ok.

Код - Ok.

return DateInterval::DateInterval(*this, date);

Тесты - Ok.

main.h:26:57: error: use of enum ‘Month’ without previous declaration
  Date(int c_sec, int c_min, int c_hour, int c_day, enum Month c_month, int c_year);
                                                         ^

repo

(проверено 21 янв)

Морской бой (задача 3). Ok.

Код - Ok.

repo

(проверено 21 янв)

Жизнь (Задача 4). В процессе.

Код - в процессе.

study/2017.cpp/pushkov/lab4/lab4/Interface.h:19:2: error: stray ‘\321’ in program
  void get�ommand();
  ^

study/2017.cpp/pushkov/lab4/lab4/Interface.cpp:11:15:   required from here
/usr/include/c++/5/bits/stl_algobase.h:340:18: error: binding ‘const World’ to reference of type ‘World&’ discards qualifiers
        *__result = *__first;   
                  ^

repo

(проверено 24 янв)