diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-03-30 09:43:35 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-03-30 09:43:35 +0400 |
| commit | 5e6dc29068bf980bacd9c5421341c66fabc838ac (patch) | |
| tree | 32e791ece6dfd73591e91f7fb0f023317cf1a5c5 /graphs/Makefile | |
| parent | 85dcaa072faeadc318ec717caa29d1cb94bddd59 (diff) | |
Исправил третью задачу и функцию вывода графа
Diffstat (limited to 'graphs/Makefile')
| -rw-r--r-- | graphs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphs/Makefile b/graphs/Makefile index 11c6460..d20a34b 100644 --- a/graphs/Makefile +++ b/graphs/Makefile @@ -27,8 +27,8 @@ test3: task3 task4: $(COMPILE) -o task.out task4.cpp test4: task4 - @printf "" | ./task.out - @printf "Answer: \n" + @printf "4\n5\n1 2\n1 3\n1 4\n2 3\n3 4" | ./task.out + @printf "Answer: Связный\n" task5: $(COMPILE) -o task.out task5.cpp |