Add to Favorites    Make Home Page 17594 Online  
 Language Categories  
 Our Services  

Home » C++ Home » Mathematics Home » Progam that gives all details of a Triangle given the lengths of its sides.

A D V E R T I S E M E N T

Search Projects & Source Codes:

Title Progam that gives all details of a Triangle given the lengths of its sides.
Author Adarsh Ramamurthy
Author Email adarsh83 [at] rediffmail.com
Description Gives various details like the angles, whether the triangle can be formed or not, circum radius, etc
Category C++ » Mathematics
Hits 375719
Code Select and Copy the Code
#include<stdio.h> #include<conio.h> #include<stdlib.h> #include<math.h> main() { clrscr(); float a,b,c,S,D,A,B,C,Area,R; printf("Enter the lengths of the three sides of the triangle : "); scanf("%f%f%f",&a,&b,&c); S = (a+b+c)/2.0; // S is the semiperimeter of the triangle D = S*(S-a)*(S-b)*(S-c);//D is the square of the area of the triangle if(D<=0) { printf(" The triangle cannot be formed"); getch(); exit(0); } if((a==b || b==c || c==a) && !(a==b && b==c && c==a)) // this complex logic is to eliminate interpretting a triangle with all three // sides equal as both isosceles and equilateral. printf(" The triangle is ISOSCELES "); if(a==b && b==c && c==a) printf(" The triangle is EQUILATERAL "); if(a!=b && b!=c && c!=a) printf(" The triangle is SCALENE "); Area = sqrt(D); R = (a*b*c)/(4.0*Area); printf("PERIMETER = %.2f units ",(2.0*S)); printf("AREA = %.2f sq.units ",Area); printf("CIRCUM RADIUS = %.2f units ",R); // using sine rule,we get... A = (180.0/3.1415926)*asin(a/(2.0*R));// value of pi should be upto 7 B = (180.0/3.1415926)*asin(b/(2.0*R));// decimal places of accuracy and also C = (180.0/3.1415926)*asin(c/(2.0*R));// note that the 7th decimal place is // 6 and not 7 as it had to be if were if(A==90.0 || B==90.0 || C==90.0) // approximated to 7 decimal places printf(" The triangle is RIGHT ANGLED "); if(A<90.0 && B<90.0 && C<90.0) printf(" The triangle is ACUTE ANGLED "); if(A>90.0 || B>90.0 || C>90.0) printf(" The triangle is OBTUSE ANGLED "); printf(" The angles are as follows : "); printf("A = %.2f degrees ",A); printf("B = %.2f degrees ",B); printf("C = %.2f degrees ",C); printf(" Where A,B,C stand for angles opposite to sides %.2f,%.2f,%.2f",a,b,c); printf(" respectively "); getch(); return 0; }

Related Source Codes

Script Name Author
Moving ball screen saver karlmarx
The Classic Game of Snake & Ladder Lakshmi Narayana .A
Railway seat reservation question which comes in sapient VyomWorld
To calculate percentile Ravi Mathur
Send to folder ANIMESH SAHU
Analog clock and calendar Nazia & Rida
HIGH/LOW GAME MOLLY ARORA
Data structure (stack Implimentation) Swapnil B Adsure
Memory Game AnirudhSanyal
Easy Calc Anirudh Sanyal
GK Quiz Anirudh Sanyal
Hangman Game Manish Jain
Snakeman Manish Jain
Full month Calendar Nigi
Cursor shapes nigi

A D V E R T I S E M E N T




Google Groups Subscribe to SourceCodesWorld - Techies Talk
Email:

Free eBook - Interview Questions: Get over 1,000 Interview Questions in an eBook for free when you join JobsAssist. Just click on the button below to join JobsAssist and you will immediately receive the Free eBook with thousands of Interview Questions in an ebook when you join.

New! Click here to Add your Code!


ASP Home | C Home | C++ Home | COBOL Home | Java Home | Pascal Home
Source Codes Home Page

 Advertisements  

Google Search

Google

Source Codes World.com is a part of Vyom Network.

Vyom Network : Web Hosting | Dedicated Server | Free SMS, GRE, GMAT, MBA | Online Exams | Freshers Jobs | Software Downloads | Interview Questions | Jobs, Discussions | Placement Papers | Free eBooks | Free eBooks | Free Business Info | Interview Questions | Free Tutorials | Arabic, French, German | IAS Preparation | Jokes, Songs, Fun | Free Classifieds | Free Recipes | Free Downloads | Bangalore Info | Tech Solutions | Project Outsourcing, Web Hosting | GATE Preparation | MBA Preparation | SAP Info | Software Testing | Google Logo Maker | Freshers Jobs

Sitemap | Privacy Policy | Terms and Conditions | Important Websites
Copyright ©2003-2024 SourceCodesWorld.com, All Rights Reserved.
Page URL: http://www.sourcecodesworld.com/source/show.asp?ScriptID=438


Download Yahoo Messenger | Placement Papers | Free SMS | C Interview Questions | C++ Interview Questions | Quick2Host Review