Menghitung Luas dan Keliling Lingkaran


#include <iostream.h>
#include <conio.h>
#define phi 3.14

float luasLingkaran (float r)
   {
      float t;
      t=phi*(r*r);
      return (t);
   }

float kelLingkaran (float r)
   {
      float t;
      t=2*phi*r;
      return (t);
   }


void main ()
   {
   float jj;
   cout <<" Masukan Jari-jari Lingkaran : ";
   cin  >>jj;
   cout <<endl;
   cout <<"Jari-jari\t\t Luas\t\t Keliling\n";
   cout <<" "<<jj;
   cout <<"\t\t";
   cout <<luasLingkaran(jj);
   cout <<"\t\t";
   cout <<kelLingkaran(jj);
   cout <<endl<<endl;
   getch ();
   }




Comments

Popular posts from this blog

Animasi Lucu C++

Sistem Sensor dan Robotika

DDL Part II