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
Stanislav Mykhailenko 94ae06e975
Add Lesson 1
2024-06-04 11:40:07 +03:00

21 lines
441 B
C++

#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;
}