Ques6.)
1
1 2 1
1 2 4
2 1
1 2 4
8 4 2 1
1 2
4 8 16
8 4 2 1
1 2
4 8 16 32 16
8 4 2 1
1 2
4 8 16 32 64
32 16 8
4 2 1
Ans.)
package practice;
public class Practice {
public static
void main(String[] args) {
for(int
i=1;i<8;i++)
{
for(int
k=6;k>=i;k--)
{
System.out.print(" "+" "+" "+"
");
}
for(int
j=0;j<i;j++)
{
System.out.printf("%4d", (int)Math.pow(2, j));
}
for(int
j=i-2;j>=0;j--)
{
System.out.printf("%4d", (int)Math.pow(2, j));
}
System.out.println("");
}
}
}
No comments:
Post a Comment