Advertisement
Guest User

c++

a guest
Nov 15th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. using namespace std;
  2. #include <iostream>
  3. int main ()
  4. {
  5. float aepfel;
  6. float preis;
  7. cout<<"Bitte geben Sie die Anzahl der Aepfel an: ";
  8. cin>>aepfel;
  9. cout<<"Bitte geben sie den Preis von einem Apfel ein: ";
  10. cin>>preis;
  11. float Gesamtpreis=aepfel*preis;
  12. cout<<"Der Betrag ist: "<<Gesamtpreis;
  13. cout<<" Euro";
  14. int ("pause");
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement