View Code of Problem 24

#include<stdio.h>
#include<ctype.h>
#include<string.h>
#include<iostream>
#include<stack>
#include<time.h>
#include<math.h>
using namespace std;
/*test*/
//#define as '\x41'
//int atoi(char s[]);
//int strlen(char s[]);
//void squeeze(char s[], char c);
//void strcat(char s[], char t[]);
//int bitcount(unsigned x);

int main()
{
	int a, b, c;
	float s;
	while (scanf("%d%d%d", &a, &b, &c) != EOF){
		s = float(sqrt((a + b + c)*(a + b - c)*(a + c - b)*(b + c - a))) / 4;
		printf("%.2f", s);
	}
	
}

Double click to view unformatted code.


Back to problem 24