-
Do....while Loop
Hi,
I have wrote a for loop that writes a program that asks the user to type in three numbers and then displays the total of those numbers
public class Forloop3_3a
{
public static void main(String[] args)
{
int num1;
int total = 0;
for (int i=1; i<=3; i++ ) {
System.out.print("Enter Numbers: ");
num1 = EasyIn.getInt();
total = total + num1;
}
System.out.println("Total is " + total);
}
}
How can i do this using a do...while loop? so that you can type in numbers continually until you want to finish
Thanks in advance
-
So you want to be able to enter numbers until the user wants to stop?
Try something like this:
do{
Do the adding
}while(num1!==0); // If the user types in 0 the loop stops
Hopefully this helps
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks