how to write a java program for an output
****0 ***01 **012 *0123 01234
Answer / 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 |
What is coupling in oop?
What is encapsulation?
What is oop in simple words?
inheritence with example
what is difference between thread and programme.
What is oops and its features?
How to deploy web appliction in web logic ?
What is DeadlyDiamondDeathProblem ?
Is html an oop?
wht is major diff b/w c and c++?
What is polymorphism in oops with example?
what uses of c++ language?