Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
#7
#include <iostream> using namespace std; int main() { int a, b; std::cout << "Podaj a: "; cin >> a; cout << a << endl << "Podaj b: "; cin >> b; cout << b << endl; cout << "a + b = " << a + b << endl; cout << "a - b = " << a - b << endl; cout << "a * b = " << a * b << endl; cout << "a / b = " << a / b << endl; cout << "a % b = " << a % b << endl; return 0; }
run
|
edit
|
history
|
help
0
return reference (msvc)
C++ exception
Policy class partial specialization inheritance
Noexcept
thread-destructor
Get parameter type
C++ standard library formatted input hexadecimal float without prefix or exponent test case
#27
hangman
Workaround for https://github.com/Project-OSRM/osrm-backend/pull/4385