#include "stdafx.h" #include "math.h" #includeprogram ke staženíusing namespace std; int _tmain(int argc, _TCHAR* argv[]) { float a,b,obsah; printf("Zadejte stranu a: "); scanf_s("%f",&a,1); printf("Zadejte stranu b: "); scanf_s("%f",&b,1); obsah=a*b; printf("Obsah obdelniku = %.3f\n",obsah); system("pause"); return 0; }