Answer to Question #3345 in C++ for mukunda
What is the perimeter of a triangle that has sides measuring 12 inches, 9 inches, and 6 inches?
1
2011-07-15T14:30:56-0400
#include <iostream>
using namespace std;
int main()
{
double sides[] = { 12, 9, 6 };
double perimeter = sides[0] + sides[1] + sides[2];
cout << "The perimeter is " << perimeter << " inches" << endl;
return 0;
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment