Cosmetic changes for specifying conditions in breakpoints.

Add the 'if' word to the dialogs.
Parse the breakpoints table more effieciently.
This commit is contained in:
Ernie Pasveer
2023-11-24 13:11:49 -06:00
parent f3e454003d
commit c84dd60a7e
9 changed files with 207 additions and 46 deletions
+6 -1
View File
@@ -26,7 +26,12 @@ int main (int argc, char* argv[]) {
nextTerm = t1 + t2;
while (nextTerm <= n) {
std::cout << nextTerm << ", ";
std::string s = "";
s = std::to_string(nextTerm);
std::cout << s << ", ";
t1 = t2;
t2 = nextTerm;
nextTerm = t1 + t2;