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 |
Should you protect the global data in threads? Why or why not?
What is the fundamental idea of oop?
What is the difference between the C & C++?
What is ambiguity in c++
what type of questions
What is solid in oops?
why overriding?
What is the benefit of oop?
what is overloading and overriding?
What is sub classing in c++?
Write a C++ program to conduct an election of a mayor.Declare a class ELECTION With the following specification: Data member: Name 25 character Age Integer symbol 1 character Member functions: To accept data for 20 contestant To accept symbol as voting from 100 voters. To declare the winner and the loser.
1 Answers Global Academy, Infotech,
What is a superclass in oop?