Facebook
From Bulky Mockingbird, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 143
  1. amountOfPeople = input("Hoeveel mensen zijn er? ")
  2. def countHeads(amountOfHeads):
  3.     amountOfHeads = amountOfPeople
  4.     print("er zijn " + amountOfHeads + " hoofden")
  5.  
  6.  
  7. def countShoulders(amountOfShoulders):
  8.     amountOfShoulders = amountOfPeople * 2
  9.     print("er zijn " + amountOfShoulders + " schouders")
  10.  
  11. def countKnees(amountOfKnees):
  12.     amountOfKnees = amountOfPeople * 2
  13.     print("er zijn " + amountOfKnees + " knieen")
  14.  
  15. def countToes(amountOfToes):
  16.     amountOfToes = amountOfPeople * 10
  17.     print("er zijn " + amountOfToes + " tenen")
  18.  
  19.  
  20. countHeads(amountOfPeople)
  21. countShoulders(amountOfPeople)
  22. countKnees(amountOfPeople)
  23. countToes(amountOfPeople)

Replies to Untitled rss

Title Name Language When
Re: Untitled Ramon text 3 Years ago.