Odpowiedź:
#include <iostream>
float pole(float podstawa, float wysokosc)
{
return(podstawa*wysokosc / 2);
}
int main(){
std::cout << pole(1000,2000) << "\n";
return 0;
" 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>
float pole(float podstawa, float wysokosc)
{
return(podstawa*wysokosc / 2);
}
int main(){
std::cout << pole(1000,2000) << "\n";
return 0;
}