Suche
Suche Menü

Übung

Variablenwerte berechnen

Berechne von Hand in jeder Zeile die Werte der Variablen, welche sich verändern.

 

int a, b=5, c, d;

a = b / 2;
c = b % 2;
d = b << a;
b = 1 - --b;

b *= -3;
d %= 3;
c += b * d + 4;
a = --b + d++;


a=0; b=2; c=3; d=4;

a = (b + 2) * 2 * c + 1;
a = ++b * d++ * ++c * (-1);