summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanto Cariotti <sancn@live.com>2017-04-25 11:21:31 +0200
committerSanto Cariotti <sancn@live.com>2017-04-25 11:21:31 +0200
commitf8b0d776251ca0da46782399ed9a7587b655bbee (patch)
tree739afca7352cea68eaac118e77a07d4f58e27bde
parent93a08c7bdd7d93fc02358644829033074d777228 (diff)
Print values of array fib
-rw-r--r--lswf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lswf.cpp b/lswf.cpp
index 31f7745..5e3a5a2 100644
--- a/lswf.cpp
+++ b/lswf.cpp
@@ -44,7 +44,7 @@ int main()
}
int* seq = new int[lastc];
- //for(i = 0; i < lastc; i++) cout << caracts[i] << ' '; cout << endl;
+ for(i = 0; i < lastc; i++) cout << caracts[i] << ' '; cout << endl;
seq[0] = 1;
for(i = lastc; i > 0; i--) {