" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
#include <conio.h>
using namespace std;
float a, b, c;
int main()
{
cout <<"Wprowadz bok a: "<<endl;
cin >> a;
cout <<"Wprowadz bok b: "<<endl;
cin >> b;
c = a*b;
cout <<"Pole prostokata wynosi: "<<c<<endl;
getch();
return 0;
}