Contenuti del Corso
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; }
Compito
Swipe to start coding
Construct a calculator that divides numbers, but only if neither of the numbers is zero.
Soluzione
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 4. Capitolo 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; }
Compito
Swipe to start coding
Construct a calculator that divides numbers, but only if neither of the numbers is zero.
Soluzione
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 4. Capitolo 2