Course Content
C Basics
C Basics
if-else Operator Practice
A Program Alerting High Temperature
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; }
Task
Swipe to show code editor
Construct a calculator that divides numbers, but only if neither of the numbers is zero.
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 4. Chapter 2
if-else Operator Practice
A Program Alerting High Temperature
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; }
Task
Swipe to show code editor
Construct a calculator that divides numbers, but only if neither of the numbers is zero.
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 4. Chapter 2
Switch to desktop for real-world practiceContinue from where you are using one of the options below