Write a program to accept a number and to print numbers in
pyramid format?
for eg:for a no. 5
1
212
32123
4321234
543212345
Answer Posted / rathod rajesh
for(int i=1;i<=5;i++)
{
for(int k=5;k>=i;k--)
{
System.out.print(" ");
}
for(int j=i;j>=1;j--)
{
System.out.print(j);
}
for(int j=2;j<=i;j++)
{
System.out.print(j);
}
System.out.println();
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is methods in oop?
What is the benefit of oop?
#include
What is difference between multiple inheritance and multilevel inheritance?
just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.
How do you explain polymorphism?
What is overriding in oop?
What is the types of inheritance?
Why it is called runtime polymorphism?
What is the point of oop?
What does oop mean in snapchat?
Why do we use inheritance?
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
What is the main purpose of inheritance law?
Why do we use class in oops?