Rabu, 11 Juni 2014
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 :
#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 :
Looping Bintang Segitiga Rata Kanan
#include<iostream.h>
void main()
{
char x,y,spasi,a,b;
for (x='a';x<='e';x++)
{
for (spasi='e';spasi>=x;spasi--)
cout<<' ';
for (y='a';y<=x;y++)
{
cout<<'*';
}
cout<<endl;
}
for (a='d';a>='a';a--)
{ cout<<' ';
for (spasi='d';spasi>=a;spasi--)
cout<<' ';
for (b='a';b<=a;b++)
{
cout<<'*';
}
cout<<endl;
}
}
Dengan Output :
void main()
{
char x,y,spasi,a,b;
for (x='a';x<='e';x++)
{
for (spasi='e';spasi>=x;spasi--)
cout<<' ';
for (y='a';y<=x;y++)
{
cout<<'*';
}
cout<<endl;
}
for (a='d';a>='a';a--)
{ cout<<' ';
for (spasi='d';spasi>=a;spasi--)
cout<<' ';
for (b='a';b<=a;b++)
{
cout<<'*';
}
cout<<endl;
}
}
Dengan Output :