Results 1 to 5 of 5
Thread: Why is the answer not coming out
- 11-11-2008, 09:47 PM #1
Member
- Join Date
- Nov 2008
- Posts
- 3
- Rep Power
- 0
Why is the answer not coming out
public class Lab8_Ex1
{
public static void main(String [] args)
{
int sum = 0;
int n = 10;
compute_sum(n);
System.out.println(“The sum is “ + sum);
System.exit(0);
}
public static void compute_sum(int x)
{
int sum = 0;
int num = 1;
while (num <=x)
{
sum += num;
num++;
}
}
}
It's supposed to sum up the no. 1-10
- 11-11-2008, 10:11 PM #2
Senior Member
- Join Date
- Sep 2008
- Posts
- 564
- Rep Power
- 5
you need to return values from a method call for them to be used. You are printing a number that is initialized to zero and is never modified.
- 11-12-2008, 12:31 AM #3
Member
- Join Date
- Nov 2008
- Posts
- 3
- Rep Power
- 0
Ok, so I'm guessing I would have to put a return; in the program but I'm still not really understanding should I change oner of the initialized zeros, and I put a return in and still got the same thing, could it be in the wrong place
- 11-12-2008, 12:58 AM #4
Return the value...
What emceenugget is telling you to do is return the result of the sum you need from the compute_sum method... something like
In the main method you have to pick up the sum withJava Code:return (sum);
CJSLJava Code:sum = compute_sum(n);
Chris S.
Difficult? This is Mission Impossible, not Mission Difficult. Difficult should be easy.
- 11-12-2008, 03:10 AM #5
Member
- Join Date
- Nov 2008
- Posts
- 3
- Rep Power
- 0
Similar Threads
-
i want my answer to a whole number or i think an int, please help?
By soc86 in forum New To JavaReplies: 3Last Post: 11-02-2008, 01:29 AM -
Plz answer this question ...
By raghu2114 in forum Advanced JavaReplies: 2Last Post: 09-19-2008, 06:36 PM -
How can i know from which jsp request is coming?
By vishnujava in forum Java ServletReplies: 1Last Post: 08-06-2008, 01:13 PM -
What is the answer yo my problem with this code
By masaka in forum New To JavaReplies: 4Last Post: 03-26-2008, 06:33 AM -
MySQL Training Class coming to Columbus, OH
By pegitha in forum Reviews / AdvertisingReplies: 0Last Post: 05-07-2007, 05:07 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks