Aug 01 2008 12:36 PM 2050 2 Adding Two Numbers dnr.simha23 How to add two numbers without using arithmetic operators? antony75 Profile Answers by antony75 Questions by antony75 Aug 4th, 2008 int firstnumber = 1int secondno =2for(int count =0;count<secondno;count++){ firstnumber++;System.out.println(firstnumber);} Answer Question Select Best Answer
Aug 01 2008 12:36 PM 2050 2 Adding Two Numbers dnr.simha23 How to add two numbers without using arithmetic operators? antony75 Profile Answers by antony75 Questions by antony75 Aug 4th, 2008 int firstnumber = 1int secondno =2for(int count =0;count<secondno;count++){ firstnumber++;System.out.println(firstnumber);} Answer Question Select Best Answer
antony75 Profile Answers by antony75 Questions by antony75 Aug 4th, 2008 int firstnumber = 1int secondno =2for(int count =0;count<secondno;count++){ firstnumber++;System.out.println(firstnumber);}