fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. int main (void) {
  5. float x = 1;
  6. float y = 2;
  7.  
  8. x = 1 + 2;
  9. y = 3 - 2;
  10. x = 3 - 1;
  11.  
  12. printf("wert von x : %f", x);
  13. printf("/nwert von y : %f", y);
  14.  
  15.  
  16.  
  17.  
  18.  
  19. // your code goes here
  20. return 0;
  21. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
wert von x : 2.000000/nwert von y : 1.000000