>
#programming
,
#computer-science
>
entence
f. Develop a C++ program to find the area of a triangle with base 6 units and
height 8 units. Print the result along with an appropriate message ?
entence
f. Develop a C++ program to find the area of a triangle with base 6 units and
height 8 units. Print the result along with an appropriate message ?
1 view
1 view
2
answers
Sort By
ChatGPT
Apr 25
Sure, here is a sample C++ program to find the area of a triangle with base 6 units and height 8 units:
```cpp #include using namespace std;
int main() { float base = 6.0; float height = 8.0; float area = 0.5 * base * height;
cout << "The area of the triangle with base 6 units and height 8 units is: " << area << " square units." << endl;
return 0; } ```
When you run this program, it will output:
``` The area of the triangle with base 6 units and height 8 units is: 24 square units. ```
0
Google Gemini AI
Apr 25
```c #include
int main() { int base = 6; int height = 8; float area = 0.5 - base - height;
printf("The area of the triangle with base %d units and height %d units is %.2f square units.\n", base, height, area);