fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. float a;
  7. float b;
  8. float c;
  9.  
  10. cout << "Geben Sie ihre Zahl ein:z.B.:";
  11. cin >> a;
  12. cout << a;
  13.  
  14. cout << "\nGeben Sie ihre zweite Zahl ein:z.B.:";
  15. cin >> b;
  16. cout << b;
  17.  
  18. a = b;
  19. c = a;
  20.  
  21. cout << "\nZahl 1:";
  22. cout << b;
  23.  
  24. cout << "\nZahl 2:";
  25. cout << c;
  26.  
  27. return 0;
  28. }
Success #stdin #stdout 0s 3416KB
stdin
1 
2 
stdout
Geben Sie ihre Zahl ein:z.B.:1
Geben Sie ihre zweite Zahl ein:z.B.:2
Zahl 1:2
Zahl 2:2