c-uebungen/Assignment_008/solution/countdown.c

32 lines
574 B
C
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* Schreiben Sie ein Programm, dass rückwärts von 10 bis 0 zählt
* und dann "Launch!" ausgibt. Verwenden Sie eine `for`-Schleife
* und die `printf`-Funktion aus ´<stdio.h>`.
*
* ```console
* 10
* 9
* 8
* 7
* 6
* 5
* 4
* 3
* 2
* 1
* Launch!
* ```
*
* Versuchen Sie die Ausgabe wie im Beispiel mit einem führenden
* Leerzeichen für die Zahlen < 10 zu realisieren.
*/
#include <stdio.h>
int main(int argc, char** argv) {
for (int i = 10; i > 0; i--) {
printf("%2d\n", i);
}
printf("%s\n", "Launch!");
return 0;
}