100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
oplossingen extra oefeningen programmeren python dawynt dodona H3: Loops $3.75   Add to cart

Other

oplossingen extra oefeningen programmeren python dawynt dodona H3: Loops

 39 views  0 purchase
  • Course
  • Institution
  • Book

Oplossingen op extra gemaakte oefeningen van reeks 3 (loops - controlelussen) op dodona voor vak programmeren van peter dawnyt ugent python.

Preview 2 out of 14  pages

  • June 12, 2024
  • 14
  • 2023/2024
  • Other
  • Unknown
avatar-seller
H3: CONTROLELUSSEN - LOOPS

Duitse tanks
#invoer bestaat uit reeks getallen, kan verschillen hoeveel
n=0
maximum = 0
serienummer = int(input()) #eerste serienummer
while serienummer >=0:
n += 1
if serienummer > maximum:
maximum = serienummer
serienummer = int(input()) #oneindige loop voorkomen

t =(((n+1)*maximum) /n ) -1
print(f"Het aantal geproduceerde tanks wordt geschat op {round(t)}.”)

Hittegolf
dagT = input() #eerste temperatuur wordt ingegeven
Zomersedagen = 0
Tropischedagen = 0
hittegolf = False
while dagT != "stop" and hittegolf is False:
dagT = oat(dagT)
if dagT >= 25:
Zomersedagen += 1
if dagT >= 30:
Tropischedagen +=1
if Zomersedagen >=5 and Tropischedagen >=3:
hittegolf = True
else:
Tropischedagen = 0
Zomersedagen = 0
dagT = input()


if hittegolf is True:
uitkomst = "hittegolf"
else:
uitkomst = "geen hittegolf"
print(uitkomst)

Chaos
d = oat(input()) #initiele populatiedichtheid
r = oat(input()) #vruchtbaarheidsparameter
s = int(input()) #aantal tijdsstappen

print(d)
populatie = d

for i in range(1,s):
d = r*d*(1-d) #populatie op dat tijdstip
print(d)

Lifters
n = int(input()) #aantal lifters
#eerste deel lifters dat je niet meeneeemt
n1 = n//2
#(range stopt 1 ervoor), 2de deel lifters

vorigescore = oat(input())




flfl fl fl

, for i in range(1,n1): #voor lifters in de eerste helft
s = oat(input())
if s > vorigescore:
vorigescore = s

s = oat(input())
n2 = n1+1
while n2 < n and s < vorigescore:
s = oat(input())
n2 += 1
print(s)

Loonbrief
getal1 = int(input()) #getal dat gekozen is door 1e werknemer
getalbegin = getal1

loon = input()
nwerknemers = 0
while loon != "stop":
nwerknemers +=1
getal1 += int(loon)
print(f"werknemer #{nwerknemers} uistert €{getal1}")
loon = input() #om oneindige loop te voorkomen

gemiddelde = (getal1 - getalbegin) / nwerknemers
print(f"gemiddeld loon: €{gemiddelde:.2f}”)

Eerste verwittiging
n = int(input()) #geeft aan hoeveel gebouwen er naast elkaar staan
gebouw = input()
huidigehoogte = int(input()) #zogezegdemaxhoogte
print(f"{gebouw} is zichtbaar van het gelijkvloers tot {huidigehoogte} meter.")

for i in range(n-1):
gebouw = input()
hoogte = int(input())
if hoogte > huidigehoogte:
print(f"{gebouw} is zichtbaar van {huidigehoogte} meter tot {hoogte} meter.")
huidigehoogte = hoogte

Apen & kokosnoten

#meervoudsvormen de nieren
def aantal(noten):
return((str(noten) if noten else 'geen') + ' '+ ('noot' if noten ==1 else 'noten' ))

#invoer
p = int(input()) #aantal piraten
k = int(input()) #aantal kokosnoten begin

#snelste werkwijze hier is met een template, anders zeer vaak zelfde zin schrijven en veel
typewerk
template = '{} = {} voor piraat#{} en {} voor de aap'
for piraat in range(p):
k_voor_piraat = k//p #verdeling berg over aantal piraten
k_voor_aap = k % p #rest van de verdeling zegmaar => modulo
print(template.format(aantal(k),aantal(k_voor_piraat), piraat + 1,aantal(k_voor_aap)))
k -= k_voor_piraat + k_voor_aap #wegnemen van de berg wat al weggelegd is

#bepalen van eindzin: hoeveel noten smorgens overblijven voor elke piraat




fl flfl

fi fl

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller hannahmeuleman. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $3.75. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

67474 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$3.75
  • (0)
  Add to cart