All pastes #2107904 Raw Edit

Something

public text v1 · immutable
#2107904 ·published 2012-01-30 22:05 UTC
rendered paste body
i = zahl.länge;
quer = 0;

while (i >= 0) {
 temp = zahl div 10^i;
 quer += temp;
 zahl -= temp * 10^i;
 i--;
}