Kamis, 24 Maret 2016

LOOPING

1. PERULANGAN SEGITIGA BINTANG

source code :

#include <stdio.h>

main(){
int i, j, tinggi=7;
printf("\n\tPERULANGAN SEGITIGA BINTANG\n");
    for(i=0;i<=tinggi;i++){
        for(j=1;j<=i;j++){
            printf("*");
        }
        printf("\n");
    }
}

outputnya :

2. MENAMPILKAN DERET

source code :

#include <iostream>
#include <conio.h>
using namespace std;
main()
{
    for(int a=1;a<=20;a++)
   {
       cout <<" " << a;
    }
   getch();
}

outputnya :


3. MENGHITUNG LUAS PERSEGI

source code :

#include <iostream>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int Luas(int a, int b){
int hasil;
hasil=a*b;
return hasil;
}
int main(int argc, char** argv) {
int h=0,y=0,l;
cout<<"menghitung luas persegi"<<endl;
cout<<"masukan lebar=";cin>>h;
cout<<"masukan panjang=";cin>>y;
l=Luas(h,y);
cout<<"Luas="<<l;
return 0;
}

outputnya :



Tidak ada komentar:

Posting Komentar