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
I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...
how to get the oracle certification? send me the answer
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
What is abstraction in oop?
What is difference between abstraction and encapsulation?
What is the use of oops?
Why multiple inheritance is not possible?
Can you inherit a private class?
What does I oop mean?
How do you achieve polymorphism?
What is interface? When and where is it used?
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
What is object and class in oops?
what are the different types of qualifier in java?
what is graphics