January 2019 1 57 Report
Jak zmienić ten program, aby użytkownik sam mógł wpisywać dane do liczenia pól figur? Zadanie musi być zrobione z klas, jest to programownie w c++. Poniżej zamieszczam to co udało mi się zrobić, proszę o przekształcenie, daję naj i dużo punktów.

#include
#include

using namespace std;

class Kwadrat{

float a;

public:

Kwadrat(float x){
a=x;
}

void pole(){
cout<<"Pole Kwadratu: "< }

};

class Kolo{

float r;

public:

Kolo(float x){
r=x;;
}

void pole(){
cout<<"Pole kola: "< }

};
class Prostokat{

float a,b;

public:

Prostokat(float x, float y){
a=x;b=y;
}

void pole(){
cout<<"Pole Prostokatu: "< }

};

int main()
{

Kolo k(1);
Kwadrat kw(2);
Prostokat p(3,2);
k.pole();
kw.pole();
p.pole();
}

More Questions From This User See All

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.