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
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
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
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
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.