if-else Operator Practice
A Program Alerting High Temperature
main.c
123456789101112131415161718#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; }
Tâche
Swipe to start coding
Construct a calculator that divides numbers, but only if neither of the numbers is zero.
Solution
Tout était clair ?
Merci pour vos commentaires !
Section 4. Chapitre 2
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Awesome!
Completion rate improved to 2.63Awesome!
Completion rate improved to 2.63
if-else Operator Practice
A Program Alerting High Temperature
main.c
123456789101112131415161718#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; }
Tâche
Swipe to start coding
Construct a calculator that divides numbers, but only if neither of the numbers is zero.
Solution
Tout était clair ?
Merci pour vos commentaires !
Section 4. Chapitre 2
single
Awesome!
Completion rate improved to 2.63
if-else Operator Practice
Glissez pour afficher le menu
A Program Alerting High Temperature
main.c
123456789101112131415161718#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; }
Tâche
Swipe to start coding
Construct a calculator that divides numbers, but only if neither of the numbers is zero.
Solution
Tout était clair ?
Merci pour vos commentaires !