Click here to Skip to main content
Sign Up to vote bad
good
See more: Java
i have a method that solves the sum between two numbers but if the first number is greater than the second it wont display anything but if i add an if statement i get an error for the method saying unreachable code
 
public int sum(int sum1,int sum2)
{

int sum0;
sum0=(sum1+sum2)*(sum1-sum2+1)/2;

return sum0;


}
Posted 5-Nov-12 15:30pm


2 solutions

try this.
 
public static int sum(int sum1,int sum2)
	{
 
	int sum  = sum1 > sum2 ? (sum1+sum2)*(sum1-sum2+1)/2 : (sum1+sum2)*(sum2-sum1+1)/2;
	
	return sum;
 

	} 
 
  Permalink  
Comments
diego14567 - 9-Nov-12 14:41pm
thanks i was able to find another solution for it myself shortly after posting this :)
deepak.m.shrma - 12-Nov-12 0:36am
no prob buddy :-) is this what you exactly needed or you have done something else...
It's not in this method. Please check up, using the debugger. Catch all exceptions in this thread and see what happens; it should give you exact location.
 
And the body of your method should be just one line:
return (sum1 + sum2) * (sum1 - sum2 + 1) / 2;
 
Of course, what you write is not a mistake, but looks weird…
 
—SA
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 6,889
1 Prasad_Kulkarni 3,671
2 OriginalGriff 3,359
3 _Amy 3,312
4 CPallini 2,925


Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 6 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid