Skip to content
Snippets Groups Projects
Select Git revision
  • 966701dc62f20e437ec69b309808144e174b2903
  • 2024ws default
  • 2023ws
  • 2022ws
  • 2021ws
  • 2020ws
  • 2018ws
  • 2019ws
  • 2017ws
  • 2016ws
10 results

if-5.c

Blame
  • if-5.c 192 B
    #include <stdio.h>
    int main (void) { int a = 137; int b; printf ("Bitte eine Zahl eingeben: ");
    scanf ("%d", &b); if (b != 0) { printf ("%d\n", a / b); printf ("Danke sehr.\n"); }
    return 0; }