Membuat Beberapa Pola dari C++
POLA 6
Program dibawah saya menggunakan aplikasi BORLAND C++ 5.02
Berikut kode programnya.
#include <iostream.h>
#include <conio.h>
main()
{
clrscr();
for(int f=5;f>=1;f--)
{
for(int g=1;g<=5;g++)
{
cout<<" "<<f;
}
cout<<endl;
}
getch();
}
Berikut ini tampilan outputnya.
POLA 6
Program dibawah saya menggunakan aplikasi BORLAND C++ 5.02
Berikut kode programnya.
#include <iostream.h>
#include <conio.h>
main()
{
clrscr();
for(int f=5;f>=1;f--)
{
for(int g=1;g<=5;g++)
{
cout<<" "<<f;
}
cout<<endl;
}
getch();
}
Berikut ini tampilan outputnya.
0 komentar:
Post a Comment