#include<iostream>
using namespace std;
int main() {
/**DEKLARASI**/
float Luas, r;
const float phi=3.14;
/**ALGORITMA**/
cout<<"PROGRAM MENGHITUNG LUAS LINGKARAN"<<endl;
cout<<"r="; cin>>r;
Luas=phi*r*r;
cout<<"Luas Persegi panjang="<<Luas<<endl;
system("PAUSE");
}
No comments:
Post a Comment