what is the source code having an output of
1
21
321
using for loop statement in microsoft visual c++?
it must be right aligned
what is the source code having an output of
1
21
321
using for loop statement in microsoft visual c++?
it must be right aligned
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
int i,j,k;
for ( i=1; i<5; i++ )
{
for ( j=0,k=i ; j<i ; j++,k-- )
{
cout << k;
}
cout << "\n";
}
char f;cin>>f;
return 0;
}
Is this good for you, or did you wanted something else?
No it's not good. Doing his homework for him is NOT good. It's called cheating, something we try to avoid on these forums.
No it's not good. Doing his homework for him is NOT good. It's called cheating, something we try to avoid on these forums.
Just thought it would be easier if i show the guy how its done and then if he really likes what hes doing, he would try and understand how i did that himself. But yeah, i get the point, it was stupid of me to do it for him, thanks for informing me. :)
nuclear
You are right doing homework is not the task of us. We will discuss our programming problems.
Hello 3YEARS,
Do you have any idea abot how to print a pyramid of "*"?
*
**
***
****
The logic of your actual post is almost same to print pyramid. Please do some coding.
One thing I can say that you will need two for loops for printing it.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.