write a c++ program that gives output
4
3 4
2 3 4
1 2 3 4 using looping statement
Answers were Sorted based on User's Feedback
Answer / rajesh
4
3 4
2 3 4
1 2 3 4
#include<stdio.h>
int main()
{
int i, j, n=4;
for(i=n; i>=1; i--)
{
for(j=i; j<=n; j++)
{
printf("%d",j);
}
printf("\n");
}
printf("\n");
}
Is This Answer Correct ? | 32 Yes | 1 No |
Answer / rajesh
This answer is to print :
4342341234
#include<stdio.h>
int main()
{
int i, space, num, n=4;
for(i=1; i<=n; i++)
{
for(space=1; space<=n-i; space++)
{
}
for(num=space; num<=n; num++)
{
printf("%d",num);
}
}
printf("\n");
}
Is This Answer Correct ? | 13 Yes | 3 No |
Answer / sandeep mannnarakkal
void printSeries(int nNum)
{
for ( int i = 0 ; i < nNum ; i ++)
{
for ( int j = nNum -i ; j <= nNum ; j ++)
{
cout << j;
}
cout << endl;
}
}
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rajesh
This answer is to print :
4
34
234
1234
#include<stdio.h>
int main()
{
int i, space, num, n=4;
for(i=1; i<=n; i++)
{
for(space=1; space<=n-i; space++)
{
printf(" ");
}
for(num=space; num<=n; num++)
{
printf("%d",num);
}
printf("\n");
}
printf("\n");
}
Is This Answer Correct ? | 2 Yes | 9 No |
Explain pass by value and pass by reference.
What are destructors?
What is the difference between a copy constructor and an overloaded assignment operator?
4 Answers Belzabar, Citrix, Microsoft, Wipro,
Where must the declaration of a friend function appear?
Write some differences between an external iterator and an internal iterator?
What is c++ and its features?
Write my own zero-argument manipulator that should work same as hex?
Is java as fast as c++?
What is dangling pointers?and what is memory leak?
When we use Abstract Class and when we use Interface?where we will implement in real time?
What is function overriding in c++?
what are Access specifiers in C++ class? What are the types?