C++

Napisz prosty program, który obliczy pole prostokąta.

Program powinien wyświetlać na ekranie komunikaty:

Program przygotowal: Imie Nazwisko
>>> Program obliczy pole prostokata
>>> Podaj bok a=
>>> Podaj bok b=
>>> Pole prostokata wynosi



Odpowiedź :

Odpowiedź:

#include <iostream>

#include <cstdio>

using namespace std;

int a;

int b;

int pole;

int main()

{

cout << "Program przygotowal: Marian Pazdzioch" << endl;

cout << "Program obliczy pole prostokata" << endl;

cout << "Podaj bok a: ";

cin >> a;

cout << "Podaj bok b: ";

cin >> b;

pole = b*a;

cout << "Pole prostokata wynosi: " << pole;

return 0;

}

Wyjaśnienie:

powinno działać tylko zmien "Marian Pazdzioch" na cos innego