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 encapsulation and abstraction? How are they implemented in C++?
0 Answers Agilent, ZS Associates,
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
what is inline function?
Can abstract class have normal methods?
what isthe difference between c structure and c++ class
what's the basic's in dot net
What is Dynamic Polymorphism?
Why do we need polymorphism in c#?
how much classes are used in c++
What is memory leak and memory corruption?
What are properties in oop?
What is sub classing in c++?