Kursusindhold
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; }
Opgave
Swipe to start coding
Construct a calculator that divides numbers, but only if neither of the numbers is zero.
Løsning
Var alt klart?
Tak for dine kommentarer!
Sektion 4. Kapitel 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; }
Opgave
Swipe to start coding
Construct a calculator that divides numbers, but only if neither of the numbers is zero.
Løsning
Var alt klart?
Tak for dine kommentarer!
Sektion 4. Kapitel 2