plots erweitert

This commit is contained in:
2024-05-31 20:30:57 +02:00
parent 421f382d07
commit fb58c51aa2
5 changed files with 94 additions and 22 deletions

View File

@@ -9,7 +9,9 @@ engine: julia
using InteractiveUtils
```
# Ein- und Ausgabe I/O
# Ein- und Ausgabe
zahlreiche Varianten und Funktionen, das Folgende ist eine kleine Auswahl
@@ -37,7 +39,6 @@ zahlreiche Varianten und Funktionen, das Folgende ist eine kleine Auswahl
```{julia}
# aus dem ersten Beispielprogramm
function input(prompt = "Eingabe:")
println(prompt)
@@ -47,12 +48,17 @@ end
```
```{julia}
#| eval: false
a = input("Bitte 2 Zahlen eingeben!")
```
```{julia}
#| echo: false
a = "34 56"
```
```{julia}
av = split(a)
```