Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
be03d9b108 | ||
|
2009f1c9df |
@ -1,28 +1,22 @@
|
|||||||
#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);
|
||||||
printf("Ульяновск\n");
|
int a;
|
||||||
printf("Лето\n");
|
printf("Введите цену надувной лодки\n");
|
||||||
printf("Введите температуру\n");
|
|
||||||
scanf_s("%d", &a);
|
scanf_s("%d", &a);
|
||||||
if (a > 0 and a < 10)
|
if (a > 0 and a < 15000) {
|
||||||
{
|
printf("Дешево");
|
||||||
printf("Холодно");
|
|
||||||
}
|
}
|
||||||
if (a >= 10 and a < 15)
|
if (a >= 15000 and a < 30000) {
|
||||||
{
|
printf("Нормально");
|
||||||
printf("Прохладно");
|
|
||||||
}
|
}
|
||||||
if (a >= 15 and a < 25)
|
if (a >= 30000 and a < 75000) {
|
||||||
{
|
printf("Дорого");
|
||||||
printf("Тепло");
|
|
||||||
}
|
}
|
||||||
if (a >= 25 and a < 35)
|
if (a >= 75000 and a < 150000) {
|
||||||
{
|
printf("Ужас дорого");
|
||||||
printf("Жарко");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user