Home
About
Contact
Berbagi ilmu itu indah
Home
Business
Post With Featured Image
Post With Slider
Post with SoundCloud
Post With Video
Technology
Authors
Sitemap
Tags
Timeline
Life & Style
Games
Full Width
Right Sidebar
Left SIdebar
Sports
Stars
Points
Percent
in The Top
Error Page
Breaking News
Tuesday, April 22, 2014
contoh program looping (perulangan) pada c++ untuk menampilkan bintang bertingkat
Untuk menampilkan program seperti gambar diatas, script yang dituliskan adalah sebagai berikut:
#include <iostream.h>
#include <conio.h>
main() {
int a;
cout<<"masukkan batas : ";cin>>a;
for ( int b=1; b<=a; b++)
{ cout<<endl;
for(int i=1;i<=b;i++)
{
cout<<" * ";
}
}
getch();}
semoga bermanfaat..
Share !
Tweet
Designed By