Answer to Question #3345 in C++ for mukunda

Question #3345
What is the perimeter of a triangle that has sides measuring 12 inches, 9 inches, and 6 inches?
1
Expert's answer
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS