• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

How to repeat code until user wants to quit?

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How do I repeat this until the user wants to quit?

import java.util.Scanner;
public class multi
{

public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);
int n;
System.out.println("Enter # here for a #*# table");
n = keyboard.nextInt();




System.out.print(" |");
for (int j = 1; j <= n; j++)
System.out.print(" " + j);
System.out.print('\n');
System.out.print(" ");
for (int i= 0; i<n; i++)
System.out.print("---");
System.out.println("");
for (int i = 1; i <= n; i++)


{
System.out.print(" " + i + "|");
for (int j = 1; j <= n; j++)
{
String display = "";

if (i * j < 10)
{
display += " " + i * j;
System.out.print(display);
}
else
{
display += " " + i * j;
System.out.print(display);
}
}
System.out.print('\n');
}
}

}
 
Ranch Hand
Posts: 216
Tomcat Server Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

do pham wrote:Hi everybody,
I'm a new user of this forum.



Welcome back do pham to the coderanch.
May be you would like to have a look at HowToAnswerOnJavaRanch and HowToAskQuestionsOnJavaRanch before post
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic