Odpowiedź:
#include <iostream>
using namespace std;
int main()
{
int a,b,wynik;
cout<<"Program oblicza pole i obwód prostokąta"<<endl;
cout<<"Podaj a:"<<endl;
cin>>a;
cout<<"Podaj b:"<<endl;
cin>>b;
cout<<"Pole:"<<a*b<<endl;
cout<<"Obwód:"<<a + b + a + b<<endl;
return 0;
}
Wyjaśnienie:
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include <iostream>
using namespace std;
int main()
{
int a,b,wynik;
cout<<"Program oblicza pole i obwód prostokąta"<<endl;
cout<<"Podaj a:"<<endl;
cin>>a;
cout<<"Podaj b:"<<endl;
cin>>b;
cout<<"Pole:"<<a*b<<endl;
cout<<"Obwód:"<<a + b + a + b<<endl;
return 0;
}
Wyjaśnienie: