Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import java.io.

*;
class demo{
int len,i;
demo(int l)
{
len=l;
}
void draw()
{
for(i=1;i<=len;i++)
{
System.out.print("*");
}
}
}
class line
{
public static void main(String arg[])
{
try{
int ln;
BufferedReader br= new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter the length");
ln=Integer.parseInt(br.readLine());
demo l1=new demo(ln);
l1.draw();
}catch(Exception e)
{
System.out.println(e + "error");
}
}
}

You might also like