Skip to content

Instantly share code, notes, and snippets.

Created April 24, 2013 17:43
Show Gist options
  • Save anonymous/5454033 to your computer and use it in GitHub Desktop.
Save anonymous/5454033 to your computer and use it in GitHub Desktop.
class PrintX
{
//variables
int times;
String output;
//constructor is without parameters
//methods
public void print(String input, int i)
{
output=input;
times=i;
for(int j=1; j<=times; j++)
{
System.out.println(output);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment