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 3cddace709
Fix Lesson 1 Task 3
2024-07-18 14:11:30 +03:00

23 lines
426 B
C++

#include <iostream>
using namespace std;
int main()
{
int money = 0;
cout << "How much money do you earn? ";
cin >> money;
if (money < 1000)
cout << "Work more. ";
if (money > 999) {
if (money > 999999)
cout << "You are a millionaire. ";
if (money < 1000000)
cout << "You work great. ";
}
cout << "You are doing great!" << endl;
return 0;
}