• RSS
  • Delicious
  • Digg
  • Facebook
  • Twitter
  • Linkedin
  • Heading 1 Here:Enter the heading 1 description here.Go to blogger edit html,find these words and replace it with your own description ...
  • Heading 2 Here:Enter the heading 2 description here.Go to blogger edit html,find these words and replace it with your own description ...
  • Heading 3 Here:Enter the heading 3 description here.Go to blogger edit html,find these words and replace it with your own description ...
  • Heading 4 Here:Enter the heading 4 description here.Go to blogger edit html,find these words and replace it with your own description ...
  • Heading 5 Here:Enter the heading 5 description here.Go to blogger edit html,find these words and replace it with your own description ...
  • SLIDE-1-TITLE-HERE

    Welcome to Blogger.Go to Blogger edit html and find these sentences.Now replace these text/sentences with your own descriptions.This theme is convert to Blogger by Premiumbloggertemplates.com.Download this template and more Premium Blogger Templates From PremiumBloggerTemplates.com...

  • SLIDE-2-TITLE-HERE

    Welcome to Blogger.Go to Blogger edit html and find these sentences.Now replace these text/sentences with your own descriptions.This theme is convert to Blogger by Premiumbloggertemplates.com.Download this template and more Premium Blogger Templates From PremiumBloggerTemplates.com...

  • SLIDE-3-TITLE-HERE

    Welcome to Blogger.Go to Blogger edit html and find these sentences.Now replace these text/sentences with your own descriptions.This theme is convert to Blogger by Premiumbloggertemplates.com.Download this template and more Premium Blogger Templates From PremiumBloggerTemplates.com...

  • SLIDE-4-TITLE-HERE

    Welcome to Blogger.Go to Blogger edit html and find these sentences.Now replace these text/sentences with your own descriptions.This theme is convert to Blogger by Premiumbloggertemplates.com.Download this template and more Premium Blogger Templates From PremiumBloggerTemplates.com...

Selasa, 05 April 2011

Mencari luas persegi panjang

Posted by Cipto Tri Raharjo On 17.13 No comments

Algoritma Menghitung Luas Persegi Panjang
{menetukan panjang dan lebar, algoritma menerima masukan nilai panjang dan lebar, menghitung luas persegi panjang,

#include <iostream.h>
#include <conio.h>
class persegi{
public:
persegi();
protected:
float s;
};
persegi::persegi(){
cout<<endl;
}
class luas : public persegi{
public:
void Luas_persegi(float);
private:
float L;
};
void luas::Luas_persegi(float a){
s = a;
L = s*s;
cout<<"Luas Persegi = "<<L<<endl;
}
int main()
{
persegi z;
float i;
cout<<"Masukkan Sisi = ";
cin>>i;
luas y;
y.Luas_persegi(i);
getch ();
return 0;
}

0 komentar:

Posting Komentar