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 the important feature of inheritance?
What is coupling in oop?
What is protected in oop?
hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.
How Do you Code Composition and Aggregation in C++ ?
How do you answer polymorphism?
Why is abstraction needed?
What is interface in oop?
What is oops with example?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
What is difference between data abstraction and encapsulation?
Get me a number puzzle game-program
Where You Can Use Interface in your Project
Can bst contain duplicates?
can inline function declare in private part of class?