I started with the following code:

class Vereinfache2_edit {

    public static void main(String[] args) {

        int c1 = Integer.parseInt(args[0]);
        int c2 = Integer.parseInt(args[1]);
        int c3 = Integer.parseInt(args[2]);

        /* 1 */if (c2 - c1 == 0) {
            /* 2 */if (c1 != c3) {
                c3 += c1;
                /* 4 */System.out.println(c3);
                /* 5 */c3 *= c2;
                /* 6 */}
        }

        /* 7 */if (c1 == c3)
            /* 8 */if (c1 - c2 == 0)
            /* 9 */{
                c3 += c1;
                /* 10 */System.out.println(c3);
                /* 11 */c3 *= c1;
                /* 12 */if (c1 < c2)
                    c2 += 7;
                /* 13 */else
                    c2 += 5;
                /* 14 */}

        /* 15 */System.out.println(c1 + c2 + c3);
    }

} // end of class Vereinfache2

...and I ended with:

class Vereinfache2 { 

        public static void main(String [] args) {

           int c1 = Integer.parseInt(args[0]) ;
           int c2 = Integer.parseInt(args[1]) ;
           int c3 = Integer.parseInt(args[2]) ;

/*  1 */       
    /*  2 */        if (c2 == c1 && c1 != c3){  
    /*  4 */              System.out.println(c3 += c2) ; 
    /*  5 */              c3 = c3 * c2 ; 
    /*  6 */        }
/*  7 */      
    /*  8 */        if ( c2 == c1 && c1 == c3){
    /* 10 */            System.out.println(c3 *= 2) ; 
    /* 11 */            c3 = c3 * c2 ; c2 = c2 + 5 ; 
    /* 14 */        }


/* 15 */       System.out.println( c1+c2+c3) ;     
        }          

}  // end of class Vereinfache2

Do you see anything else like dead or switchable code?

Thanks for all answers. I ended up with this working version:

class Vereinfache2 { 

        public static void main(String [] args) {

           int c1 = Integer.parseInt(args[0]) ;
           int c2 = Integer.parseInt(args[1]) ;
           int c3 = Integer.parseInt(args[2]) ;

/*  1 */       if(c2 == c1){
    /*  2 */        if (c1 != c3){  
                        c3 += c2;
    /*  4 */            System.out.println(c3) ;          
    /*  6 */        }else{
                        c3 *= 2;
    /* 10 */            System.out.println(c3) ; 
    /* 14 */        }
                    c3 *= c2; c2 += 5;
               }

/* 15 */       System.out.println(c1+c2+c3) ;      
        }          

}  // end of class Vereinfache2
link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

For your first version:

      if (c2 == c1) {
        if (c1 != c3) {
          c3 += c1;
          System.out.println(c3);
          c3 *= c2;
        } else {
          c3 += c1;
          System.out.println(c3);
          c3 *= c1;
          if (c1 < c2)
            c2 += 7;
          else
            c2 += 5;
        }
      } else if (c1 < c2)
          c2 += 7;
        else
          c2 += 5;
    }
    System.out.println(c1 + c2 + c3);
  }
}

and for the second version:

           if (c2 == c1)
              if( c1 != c3){  
                System.out.println(c3 += c2) ; 
                c3 = c3 * c2 ; 
              } else {
                System.out.println(c3 *= 2) ; 
                c3 = c3 * c2 ; c2 = c2 + 5 ; 
              }
            }          

This way you don't do the same test 2 times.

link|improve this answer
@LucaB: Work on the original, improved one is screwed up a little. From where (c3 *= 2) thing came in, refer to the orignial. – Adeel Ansari Oct 31 '10 at 10:23
I see, I thougth when the OP said "...and I ended with:" assumed it was correct. – lbedogni Oct 31 '10 at 10:24
it has the same output..what is incorrect there? – ArtWorkAD Oct 31 '10 at 10:27
I edited my answer with your first version code. – lbedogni Oct 31 '10 at 10:31
@ArtWorkAD: you're missing some code in the second version. Is this wanted? – lbedogni Oct 31 '10 at 10:36
show 5 more comments
feedback

What about this? you don't need to check for c1, c2 equality twice and you can avoid checking for c1,c3 equality once..

public static void main(String[] args) {

        int c1 = Integer.parseInt(args[0]);
        int c2 = Integer.parseInt(args[1]);
        int c3 = Integer.parseInt(args[2]);

        if (c2 == c1) {
        int c4 = c3 + c1;
        System.out.println(c4);
        if (c1 == c3) {
            c2 += 5;
        }
        c3 = c4 * c1;

    }

        System.out.println(c1 + c2 + c3);
    }

EDIT: Edited to match with the original version rather than with your ended up version.

link|improve this answer
In what this is different from my answer? – lbedogni Oct 31 '10 at 10:07
@LucaB: You showed it but didn't explain it in the start. :) – Adeel Ansari Oct 31 '10 at 10:10
@LucaB - ok..i didn't look at your answer while I posted this..and actually looked at it after i posted my answer....if I am not wrong you had 'else if (c1 == c3)' in your answer before... which you edited to simple else now and made your answer look like mine..and as @Adeel mentioned i threw some words there.. – johnbk Oct 31 '10 at 10:11
@LucaB - btw, its not any different from your 'edited' answer now. – johnbk Oct 31 '10 at 10:14
1  
I posted a "rapid" answer for the OP, and then "cleaned" it. – lbedogni Oct 31 '10 at 10:14
show 2 more comments
feedback

Use shorthands for c3 = c3 * c2;: c3 *= c2;

link|improve this answer
feedback
/*  4 */              System.out.println(c3 += c2) ; 

should be

/*  4 */              System.out.println(c3 += c1) ; 

I believe, after looking at your original version. And here is my version.

public static void main(String[] args) {

    int c1 = Integer.parseInt(args[0]);
    int c2 = Integer.parseInt(args[1]);
    int c3 = Integer.parseInt(args[2]);

    if (c2 == c1) {
        c3 += c1;
        System.out.println(c3);
        if (c1 != c3) {
            c3 *= c2;
        } else {
            c3 *= c1;
            c2 += 5;
        }
        System.out.println(c1 + c2 + c3);
    }
}

IMO, its not a good idea to assign anything to anyone in sout.

link|improve this answer
That is right, but I think it does not matter since c1 = c2 – ArtWorkAD Oct 31 '10 at 9:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.