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 / pravin pawar
public static void main(String args[])
{
for(int r=1;r<=5;r++)
{
for(int s=5-r;s>0;s--)
System.out.print(" ");
for(int c=r;c>=1;c--)
System.out.print(c);
for(int c=2;c<=r;c++)
System.out.print(c);
System.out.print("\n");
}
}
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
What is polymorphism and its types?
Can we create object of interface?
What is ambiguity in inheritance?
Which language is pure oop?
Can a destructor be called directly?
Are polymorphisms mutations?
Can you inherit a private class?
What exactly is polymorphism?
what's the basic's in dot net
What is stream in oop?
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
What is abstraction in oops?
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
What is encapsulation with real life example?