Results 1 to 6 of 6
- 01-21-2012, 03:55 PM #1
Member
- Join Date
- Jun 2011
- Posts
- 10
- Rep Power
- 0
- 01-21-2012, 04:05 PM #2
Member
- Join Date
- Jan 2010
- Posts
- 19
- Rep Power
- 0
Re: multiplication using increment operator (with out arthematic operator)
To get the result of 3 x 5, you could do:
Java Code:int result = 0; for (int i=1; i<=3; i++) result = result + 5;
- 01-21-2012, 04:21 PM #3
Member
- Join Date
- Jun 2011
- Posts
- 10
- Rep Power
- 0
Re: multiplication using increment operator (with out arthematic operator)
no . i want with out arthamatic operators
-
Re: multiplication using increment operator (with out arthematic operator)
If you're looking for the "dump your homework here so someone else can do it for you site", this isn't it. Please show your work and ask a direct question regarding your work.
- 01-21-2012, 11:05 PM #5
Re: multiplication using increment operator (with out arthematic operator)
Please go through this web page.
dbIf you're forever cleaning cobwebs, it's time to get rid of the spiders.
- 01-22-2012, 12:02 AM #6
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 14,422
- Blog Entries
- 7
- Rep Power
- 29
Similar Threads
-
Problem With * Operator
By misant in forum New To JavaReplies: 26Last Post: 01-18-2012, 07:26 AM -
The increment operator with parentheses
By 357mag in forum New To JavaReplies: 2Last Post: 07-03-2011, 08:58 PM -
question about the operator ++
By dardar in forum New To JavaReplies: 10Last Post: 08-16-2010, 03:39 PM -
help with not equal to operator !=
By manowar689 in forum New To JavaReplies: 9Last Post: 06-15-2010, 01:10 AM -
Increment Operator Example
By abimaran in forum New To JavaReplies: 10Last Post: 11-03-2009, 05:45 PM
Bookmarks