100% prog /* SET 1: area of equilateral triangle */
#include <stdio.h>
#include<math.h>
#include<conio.h>
void main( )
{
float side, area; // side can be replaced by a
clrscr( );
printf("Enter side of the equilateral triangle:");
scanf("%f",&side);
area=(sqrt(3)/4)*side*side;
printf("\n area of the equilateral triangle with side= %f units is %f sq. units",side,area);
getch( );
}
}
తెరమీద
Enter side of the equilateral traingle:1
area of the equilateral triangle with side= 1.000000 units is 0.433013 sq. units
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.