// k1.cpp : Defines the entry point for the console application. // pobiera boki trojkata i oblicza pole wzorem herona #include "stdafx.h" #include int _tmain(int argc, _TCHAR* argv[]) { float a, b, c, p, p2; printf("Podaj boki trojkata:\n"); scanf("%f", &a); scanf("%f", &b); scanf("%f", &c); p = (a + b + c) / 2; p2 = p * (p - a) * (p - b) * (p - c); printf("\nPole powierzchni wynosi %f\n", sqrt(p2)); }