Question No:1i/p: 5
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
import java.util.Scanner;
public class StarPatern {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("enter n value");
int n=sc.nextInt();
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++){
System.out.print("*");
}
System.out.println();
}
}
}
No comments:
Post a Comment