ruby-uebungen/Assignment_017/solution/readme.md

11 lines
116 B
Markdown
Raw Permalink Normal View History

2023-05-25 17:47:19 +02:00
# Lösung: Vararg-Methoden
2023-05-23 09:19:31 +02:00
2023-05-25 17:49:42 +02:00
```ruby
2023-05-25 17:47:19 +02:00
def produkt(*p)
p.reduce { |s, e| s *= e }
2023-05-23 09:19:31 +02:00
end
2023-05-25 17:47:19 +02:00
puts produkt(5, 7, 8, 1)
2023-05-23 09:19:31 +02:00
```