Compare commits
No commits in common. "v2" and "main" have entirely different histories.
@ -1,22 +1,28 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
void main()
|
||||||
void main() {
|
{
|
||||||
|
int a;
|
||||||
SetConsoleCP(1251);
|
SetConsoleCP(1251);
|
||||||
SetConsoleOutputCP(1251);
|
SetConsoleOutputCP(1251);
|
||||||
int a;
|
printf("Ульяновск\n");
|
||||||
printf("Введите цену надувной лодки\n");
|
printf("Лето\n");
|
||||||
|
printf("Введите температуру\n");
|
||||||
scanf_s("%d", &a);
|
scanf_s("%d", &a);
|
||||||
if (a > 0 and a < 15000) {
|
if (a > 0 and a < 10)
|
||||||
printf("Дешево");
|
{
|
||||||
|
printf("Холодно");
|
||||||
}
|
}
|
||||||
if (a >= 15000 and a < 30000) {
|
if (a >= 10 and a < 15)
|
||||||
printf("Нормально");
|
{
|
||||||
|
printf("Прохладно");
|
||||||
}
|
}
|
||||||
if (a >= 30000 and a < 75000) {
|
if (a >= 15 and a < 25)
|
||||||
printf("Дорого");
|
{
|
||||||
|
printf("Тепло");
|
||||||
}
|
}
|
||||||
if (a >= 75000 and a < 150000) {
|
if (a >= 25 and a < 35)
|
||||||
printf("Ужас дорого");
|
{
|
||||||
|
printf("Жарко");
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user