lehrkraefte:blc:informatik:ffprg1-2019:challenges

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
lehrkraefte:blc:informatik:ffprg1-2019:challenges [2019/02/05 12:53]
Ivo Blöchliger [Vorgehen]
lehrkraefte:blc:informatik:ffprg1-2019:challenges [2019/02/05 17:46]
mirco_buechel
Line 15: Line 15:
 ==== hello ==== ==== hello ====
 <code python> <code python>
 +# Autor: Ivo Bloechliger
 def hello(): def hello():
     print("Hello world")     print("Hello world")
 </code> </code>
 ==== hifive ==== ==== hifive ====
 +<code python>
 +# mirco
 +def hifive(n):
 +    for i in range(n):
 +        print('Hi!')
 +    print('Five')
 +</code>
 +
 ==== rampe ==== ==== rampe ====
 +<code python>
 +def rampe(n):
 +    for i in range(n):
 +        print((i+1)*'#')
 +</code>
 ==== tree ==== ==== tree ====
 ==== teiler ==== ==== teiler ====
  • lehrkraefte/blc/informatik/ffprg1-2019/challenges.txt
  • Last modified: 2019/02/05 17:48
  • by mirco_buechel