This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2024_Stanislav_Mykhailenko/Lesson_1/Task_3/main.cpp

22 lines
441 B
C++
Raw Normal View History

2024-06-04 08:40:07 +00:00
#include <iostream>
int main()
{
int money = 0;
std::cout << "How much money do you earn? ";
std::cin >> money;
if (money < 1000)
std::cout << "Work more. ";
if (money > 1000) {
if (money > 1000000)
std::cout << "You are a millionaire. ";
if (money < 1000000)
std::cout << "You work great. ";
}
std::cout << "You are doing great!" << std::endl;
return 0;
}