Добавлена новая задача и удалена старая
This commit is contained in:
parent
7820648a57
commit
ae68843039
@ -1,15 +1,28 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
|
/*Покупка новой иномарки в 2024 году*/
|
||||||
void main() {
|
void main() {
|
||||||
SetConsoleCP(1251);
|
SetConsoleCP(1251);
|
||||||
SetConsoleOutputCP(1251);
|
SetConsoleOutputCP(1251);
|
||||||
int n = 5000;
|
|
||||||
int g = 2024;
|
int sum;
|
||||||
do {
|
printf_s("Введите стоимость новой иномарки в тыс.руб (например, 2.600.000 = 2.600) = ");
|
||||||
printf_s("â %d ãîäó íàñåëåíèå áûëî %d ÷åëîâåê \n", g, n);
|
scanf_s("%d", &sum);
|
||||||
n = (n * 103) / 100;
|
if (sum <= 2000) {
|
||||||
g = g + 1;
|
printf_s("Дешево");
|
||||||
} while (g <= 2040);
|
}
|
||||||
}
|
if (2000 < sum && sum <= 3000) {
|
||||||
|
printf_s("Нормально");
|
||||||
|
}
|
||||||
|
if (3000 < sum && sum <= 4000) {
|
||||||
|
printf_s("Дорого");
|
||||||
|
}
|
||||||
|
if (4000 < sum) {
|
||||||
|
printf_s("Очень дорого");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
|
||||||
|
//
|
Loading…
Reference in New Issue
Block a user