#Program to Print alphabet 'M' in Star Pattern
Expected Output:
* *
* * * *
* * * *
* * *
* *
Code in Java:
public class Mpattern {
void M()
{
for(int i=1; i<=5; i++)//Outer loop for number of rows
{
for(int j=1; j<=7;j++)//inner loop for number of columns
{
//if condition to print the M pattern Stars
if(j==1||j==7||i==j&&i<=4||i==2&&j==6||i==3&&j==5)
{
System.out.print("*");//printing stars
}
else
{
System.out.print(" ");//printing white spaces
}
}
System.out.println();
}System.out.println();//printing newline after each row
}
public static void main(String[] args) {
Mpattern obj=new Mpattern();
obj.M();
}
}
No comments:
Post a Comment
If you have any doubts, please let me know