pi-good.c 143 B

12345678
  1. #define PI 3.14159265359
  2. main(){
  3. // Ausgabe der mathematischen Konstante "pi" auf 3
  4. // Nachkommastellen
  5. printf("%1.3f\n", PI);
  6. }