mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 09:00:42 +08:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user