aspose file tools
The moose likes Beginning Java and the fly likes How to get set values from do while loop into next function? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply locked New topic
Author

How to get set values from do while loop into next function?

Wendell Hatcher
Greenhorn

Joined: Aug 01, 2011
Posts: 3
My question is about the increment I am asking how do you return data from the do while loop that is suppose to be set in each value.

the totalSales inside of my do while loop should have data set when it comes out of the loop it does not save the data into the totalSales or totalItems values.

// The system print out values are empty.
System.out.printf(salesID + " you entered a total of: " + totalItems + "With a total sales of $%15.2f" + totalSales);

I am trying to return data from a freaky do while or the if statement loop and it will not return the items I set why?


// yesno to n for first loop through.

do {
System.out.println("Welcome Sales ID: " + salesID + " please enter the samsung TV sold: \n");
samsungProduct = scanValue.next();
System.out.println("Please enter your total TV sales amounts individually for today \n");
singleSale = scanValue.nextDouble();
totalSales = totalSales + singleSale;
totalItems = totalItems++;
System.out.println("Do you want to enter another sales total(Y/N): \n ");
yesNo = scanValue.next();

} while (!yesNo.equalsIgnoreCase("N"));

// get the items set inside of the do while loop.

// The system print out values are empty.
System.out.printf(salesID + " you entered a total of: " + totalItems + "With a total sales of $%15.2f" + totalSales);
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 9946
    
    6


that line is wrong. you should just do

You may want to read this FAQ.


Never ascribe to malice that which can be adequately explained by stupidity.
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 9946
    
    6

sigh...now that I've wasted my time answering this question, I find you've already asked it.

Closing this thread.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: How to get set values from do while loop into next function?
 
Similar Threads
Complete noob question I apologize for my sheer and utter stupidy up front.
TreeMap question#1
endless loop
ArrayList selection Sort
StackOverflowError