Re: Das neue Auswendig lernen und die neuen UEbungen -

1.) Rechne die Zahl in binaer Darstellung  in eine Dezimale Darstellung um
0111010001110110b 29814d
2.) Rechne die Zahl in dezimal darstellung in eine Binaerdarstellung um
28961 0111000100100001
3.) Addiere die drei Zahlen schriftlich
            51691
+           30862
+           19375
-----------------
           101928
4.) Subtrahiere die letzten drei Zahlen schriftlich von der ersten schriftlich
            29415
-            6297
-            6360
-           12930
-----------------
             3828
5.) Rechne die Zahl ins zweier komplement um, mit 8 Bit - und subtrahiere diese zahl von der ersten und rechne das Ergebnis nach dezimal
-101 -96 = -197
10011011 10100000 = 00111011
6.) Multipliziere die zwei Zahlen schriftlich
19577*38079 = 745472583
7.) Dividiere die zwei Zahlen schriftlich
55538/36425 = 1
8.) Errechne x Logarithmisch mit dem Taschenrechner
25535\^x = 1705801362
9.) Errechne mit dem Abakus
99 + 24 + 88 + 2 + 43 + 68 + 27 + 3 + 97 + 98

Image 1qjiDip9TlNngUXeimSdDE00rSsoA1yPb

Image 1Q4b40LLm-A5eton253cbszErjJRqHpyR

Image 1e7he1daoMs8W2GDyNqfed2lqqymOgS8I

Image 1qAC8KzjX2R8J4-hn7W8OjuS7gDW3qPYB

Image 1vgct8HzFuClXyTPZGZ3DFNrgg-sqWGqz

Image 1UTvqMx0Dl_I0Y31aKmTbL9K1DTVrRjqt

Image 1dT7ne9pvlDqS50RYJ7I_gB1fKBcm7FJy

Image 1CVUAK4NgEGhe-TaXPbrkBGEP_NrZb9Rz

Image 16Ya1J3m11wmX2nERryQywX3fDyUlToIL

Image 1sKSjFzKU-C14XA_MK8wxGUt4RGOYNctS

Image 1K7IfjJc02VtP8RtgLuhojh1dth1QttGV

Image 1y9ySe8EkJ9EdmyENFMKglEoJtIjm5c50

Image 17QmFWx6chmKBeClGORruKjDaw8F_tNK-

Image 1p87WE8eEHrP6ooKbrnJLDIzPkjZ6oZ3I

Image 1V8WeWrLuHdo8lKOScvyhcKw4Jk-mJkbc

Image 1aVYD_kfdI7QgDBfg3yfCaNzJu6plunt6

Image 1tDtoEvXNa5P3jpuYo19C-CXOkBmolamd

Image 1WFv9uZCtRbtVRhyGhfBeJ2zACdHJ_Tna

Image 1-jnf-4ppVyr2ljdQFIDDccfofKd6FCwa

Image 1SuCP4rJsy9dBcMiU0Wf1uVe-5AUzXKvm

Image 1GR7V95FrZvEwV0X21TV9Q_1jcQzF-nLM

Image 1qD0q627QWvgYrLLa_TzHDdp44MdO2Yj1

Image 1NeieF8HCKDRhvGK_SpdouNkcCWJ_qY4P

Image 1n2eqp-7H9nuPhA1rNNAWw6EaUC238sfk

print (5*27+1)
print (28+1+9)

x = 2*3
y = 5*7
z = 11*13

print(x)
print(y)
print(z)

import math

if math.ceil(z/y) > x:
    print ("z/y > x")
else:
    print ("z/y <= x")

i = 0
while i < 10:
    print (i+1)
    i = i + 1

a = [1,4]
i = 0
while i < 8:
    a.append ((i+3)**2)
    i = i+1

i = 0
z = 0
while i < 10:
    print (a [i])
    z = z + a [i]
    i = i + 1
print (z)

136
38
6
35
143
z/y <= x
1
2
3
4
5
6
7
8
9
10
1
4
9
16
25
36
49
64
81
100
385

Image 11dErvyZCi_iLWbAP0JjX9ISY_YGCmZ_e

Image 16tI6byeB5OWu5f6IejA3YLpbngF_PFIA

Image 1QpMDO8Tpm9anQPqgtnJ1jPHyjvFUyHJX

Anders als bei der