well im doing a program that should output:
A
BB
CCC
DDD
EEEE
FFFFF
using 2 loops.
im on Dev-C++ 4.9.9.2
im all new 2 this
an this is what i got so far, some help will b great to finish this =]
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
unsigned int cLetter=++;
}
for (int x=1; x<=4; ++x)
{
for(int y=1; y<=12; ++y)
cout<<setw(5) <<y*x<<endl;
}
getchar();
return 0;
}