Skip to content

Commit

Permalink
Corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
kriboe90 committed Apr 25, 2024
1 parent 5923180 commit fe2d1fd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,7 @@
" a = c\n",
"\n",
"print('Ergebnis der letzten Iteration:')\n",
"print(f'a = {a:.5}, b = {b:.5}')\n",
"print(f'Die Nullstelle liegt bei c = {c:.5}')"
"print(f'a = {a:.5}, b = {b:.5}')"
]
},
{
Expand Down Expand Up @@ -226,7 +225,8 @@
" b = c\n",
" else:\n",
" a = c\n",
" print(f'a = {a:.5}, b = {b:.5}')"
" print(f'a = {a:.5}, b = {b:.5}')\n",
"print(f'Die Nullstelle liegt bei c = {c:.5}')"
]
},
{
Expand Down

0 comments on commit fe2d1fd

Please sign in to comment.