I'm trying to avoid the statement reaching FCut class twice.
if(qty<FCut.fc[0][16]&&mq!=FCut.fc[0][16]){
}
I'm trying to avoid the statement reaching FCut class twice.
if(qty<FCut.fc[0][16]&&mq!=FCut.fc[0][16]){
}
 
    
    I've found it!
private void Spin(){
    if(vl>0)SP.IN(prd,vl,vt,0,0,bahan,gr,bbs,bled,0,0,0);
    else SP.IN(prd,hl,ht,0,0,bahan,gr,bbs,bled,0,0,0);
    Qdot(FCut.fc[0][16]);//<== Only once ^^
}
void Qdot(int fc16){
    String fc=Integer.toString(fc16);
    if(qty<fc16&&mq!=fc16){
        if(qin.getText().length()>0){qin.setText(null);qblk.setText(null);}
    }else{//<==next todo
    }
    if(fc.length()>3){
        switch(fc.length()){
            case 4:fc=fc.charAt(0)+"."+fc.substring(1,3);break;
            case 5:fc=fc.substring(0,2)+"."+fc.substring(2,4);break;
            case 6:fc=fc.substring(0,3)+"."+fc.substring(3,5);break;
            case 7:fc=fc.charAt(0)+"."+fc.substring(1,3)+"."+fc.substring(4,6);break;
            default:fc=fc.substring(0,2)+"."+fc.substring(2,4)+"."+fc.substring(5,7);
        }
    }
    mqt.setText((R.string.minq+fc));
    Say();
}
