public int reverse(int zahl){ int hilf = 0; int multi = 1; while(zahl!=0){ hilf *= multi; hilf += zahl%10; multi *= 10; zahl /= 10; } return hilf;}