Translate

Senin, 02 Juni 2014

Looping Bintang Segitiga Kebalik

#include<iostream.h>
#include<conio.h>
void main()
{
    char x,y,spasi;
    for (x='e';x>='a';x--)
    {
        for (spasi='e';spasi>=x;spasi--)
        cout<<' ';
        for (y='a';y<=x;y++)
        {
            cout<<' '<<'*';
        }
        cout<<endl;
    }
}

Dengan Output :

0 komentar:

Posting Komentar