Lando some help with your problem

this is part of the code i use. i dont know why it wouldnt work :s
[EDIT: NO FULL CODE]
-> Yes, that is not the full code, just a Main containing all the intelligence. That’s the same as giving a full code.

if(absGetal<=kleinsteAbsGetal){
                if(absGetal == kleinsteAbsGetal){

is equivalent to

if((absGetal<=kleinsteAbsGetal) && (absGetal == kleinsteAbsGetal)){

which is the same as:

if(absGetal == kleinsteAbsGetal){

You probably meant something like (absGetal<=kleinsteAbsGetal) || (intArray[i] == kleinsteAbsGetal).