how to write a java program for an output
****0 ***01 **012 *0123 01234
Answer Posted / adeel
#include<iostream>
using namespace std;
int main()
{
int i,j;
for(i=0; i<=5; i++)
for(j=1; j<=i; j++)
cout<<j;
system("pause");
return 0;
}
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What is polymorphism and why is it important?
How is polymorphism achieved?
What is the benefit of oop?
What is coupling in oops?
What is encapsulation selenium?
What is an interface in oop?
What is polymorphism and its types?
What is constructor overloading in oop?
What is encapsulation process?
What are benefits of oop?
What is oops concept with example?
Write a c++ program to display pass and fail for three student using static member function
What is the full form of oops?
What is encapsulation in ict?
How do you define a class in oop?