java calculator---Help

How to add numbers without using plus sign(+)? Thank you...

Comments

  • Well one way to do addition without using + operator is..

    You can use[b] for loop[/b]....hope this code will help you...

    import java.*;

    public class Add
    {
    public static void main(String []args)
    {
    int a=234,b=21231;

    for(int i=1;i<=b;i++)
    {
    a++;
    }

    System.out.println("Answer = "+a);

    }
    }
  • thank you so much :)
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories