Cpp Code for Centroid of a Triangle

This cpp programming code is used to find the centroid of a triangle. You can select the whole cpp code by clicking the select option and can use it. When you click text, the code will be changed to text format. This cpp program code will be opened in a new pop up window once you click pop-up from the right corner. You can just copy, paste this cpp code and use it to find the centroid of a triangle.

    #include <iostream>
    using namespace std;
    int main()
    {
    float X1=3,Y1=4,X2=0,Y2=0,X3=0,Y3=0;
    float CX1 = (X1+X2+X3)/3;
    float CY1 = (Y1+Y2+Y3)/3;
    cout<<"Centroid(G) (X1,Y1) = ("<<CX1<<","<<CY1<<")";
    return(0);
    }
Other Programming Codes
Online Calculator : Centroid of a Triangle
Click on the select code link to copy and paste this free cpp program code for centroid of a triangle.

english Calculators and Converters


Sitemap