forked from MarekFabinski/wstep-do-pythona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
srednia_ocen.py
34 lines (31 loc) · 907 Bytes
/
srednia_ocen.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
def main():
print("Podaj liczbę ocen, które będą "
"wchodzić w skład średniej")
liczba_ocen = int(input())
suma = 0
for i in range(1, liczba_ocen+1):
print("Podaj ocenę " + str(i))
ocena = float(input())
if ocena < 0:
liczba_ocen = i - 1
break
suma += ocena
print("Suma ocen to: " + str(suma))
print("Średnia ocen to: " + str(suma/liczba_ocen))
"""
print("Podaj liczbę ocen, które będą wchodzić w skład średniej")
liczba_ocen = int(input())
suma = 0
i = 1
while i <= liczba_ocen:
print("Podaj ocenę " + str(i))
ocena = float(input())
if ocena < 0:
continue
suma += ocena
i += 1
print("Suma ocen to: " + str(suma))
print("Średnia ocen to: " + str(suma / liczba_ocen))
"""
if __name__ == "__main__":
main()