Зміст курсу
Основи C
Основи C
Практика оператора if-else
Програма, що сповіщає про високу температуру
main
#include <stdio.h> int main() { int temperature = 200; // in celsius if (temperature > 80) { printf("Temperature is so high: %d degrees Celsius\n", temperature); } else { printf("Temperature is normal: %d degrees Celsius\n", temperature); } return 0; }
Завдання
Створіть калькулятор, який ділить числа, але тільки якщо жодне з чисел не є нулем.
Дякуємо за ваш відгук!
Практика оператора if-else
Програма, що сповіщає про високу температуру
main
#include <stdio.h> int main() { int temperature = 200; // in celsius if (temperature > 80) { printf("Temperature is so high: %d degrees Celsius\n", temperature); } else { printf("Temperature is normal: %d degrees Celsius\n", temperature); } return 0; }
Завдання
Створіть калькулятор, який ділить числа, але тільки якщо жодне з чисел не є нулем.
Дякуємо за ваш відгук!
Практика оператора if-else
Програма, що сповіщає про високу температуру
main
#include <stdio.h> int main() { int temperature = 200; // in celsius if (temperature > 80) { printf("Temperature is so high: %d degrees Celsius\n", temperature); } else { printf("Temperature is normal: %d degrees Celsius\n", temperature); } return 0; }
Завдання
Створіть калькулятор, який ділить числа, але тільки якщо жодне з чисел не є нулем.
Дякуємо за ваш відгук!
Програма, що сповіщає про високу температуру
main
#include <stdio.h> int main() { int temperature = 200; // in celsius if (temperature > 80) { printf("Temperature is so high: %d degrees Celsius\n", temperature); } else { printf("Temperature is normal: %d degrees Celsius\n", temperature); } return 0; }
Завдання
Створіть калькулятор, який ділить числа, але тільки якщо жодне з чисел не є нулем.