include #include int main() { int t; SetConsoleCP(1251); SetConsoleOutputCP(1251); printf("Введите температуру:");//Ульяовск сентябрь scanf_s("%d", &t); if (t < 10) { printf("Мороз"); } if ((10 <= t) && (t < 15)) { printf("Холодно"); } if ((15 <= t) && (t < 26)) { printf("Тепло"); } if (t >= 26) { printf("Жарко"); } } / задача 6 //#include //#include // //int main() { // int price; // SetConsoleCP(1251); // SetConsoleOutputCP(1251); // printf("Введите стоимость ваз 2114:"); // scanf_s("%d", &price); // // if (price < 120000) { // printf("Дешево"); // } // if ((120000 <= price) && (price < 180000)) { // printf("Нормально"); // } // if ((180000 <= price) && (price < 230000)) { // printf("Дорого"); // } // if (price >= 230000) { // printf("Ужас как дорого"); // } //}