Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Tobey23417y@theNox it calculates number1 + number2 nothing more and I don't know why this is coming out
-
hawkes15727yThis might be caused by operator order (although I remember this to work), e.g.
cout << a + b;
being interpreted as
(cout << a) << b;
versus
cout << (a << b);
Also: Austrian developers, assemble! -
You are adding the two numbers before the input, so there is only garbish in the variables. Try to copy line 16 and put it before "Es wurde". Then the addition happens after the input of the two numbers.
Go home C++
You are drunk
joke/meme
c++ meme