geekbrains_oop_cpp/lesson_8/exercise_2.hpp

49 lines
482 B
C++
Raw Normal View History

2021-07-14 21:29:27 +00:00
#ifndef EXERCISE_2_HPP_
#define EXERCISE_2_HPP_
class Ex
{
public:
double m_x;
Ex(double x) : m_x(x) {};
};
class Bar
{
private:
double m_y;
public:
Bar(double y = 0.0) : m_y(y) {}
void set(double a)
{
if ((m_y + a) > 100)
throw Ex(a * m_y);
else
m_y = a;
}
};
void exercise_2()
{
Bar a;
int b;
try
{
while (true)
{
std::cin >> b;
if (b == 0)
break;
a.set(b);
}
}
catch (const Ex& e)
{
std::cout << e.m_x << std::endl;
}
}
#endif