diff options
Diffstat (limited to 'ee1301')
-rw-r--r-- | ee1301/wk6/hw6_directory/strap012_HW6B.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ee1301/wk6/hw6_directory/strap012_HW6B.cpp b/ee1301/wk6/hw6_directory/strap012_HW6B.cpp index 5b15ca0..5a367ff 100644 --- a/ee1301/wk6/hw6_directory/strap012_HW6B.cpp +++ b/ee1301/wk6/hw6_directory/strap012_HW6B.cpp @@ -23,7 +23,7 @@ int ff(int x) { return x*ff(x-2); } } else { - std::cout << "Returning from ff(" << x << ") = 1\n"; + std::cout << "Returning from ff(1) = 1\n"; return 1; } } |