Facebook
From che, 2 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 165
  1.  
  2. #include<conio.h>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.    double base,height,area;
  8.    cout<<"enter base:";
  9.    cin>>base;
  10.  
  11.    cout<<"enter height:";
  12.    cin>>height;
  13.       area=base*height;
  14.  
  15.  
  16.  
  17.  
  18.       return 0;
  19.       }
  20.