Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
#7.2
#include <iostream> using namespace std; int main() { float 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
Please
log in
to post a comment.
namespace name resolution
vc++ bug?
Noexcept
hangman
cv4_template
cross-platform sleep function
return reference (msvc)
algorithm_1
Runner-mt
new
Please log in to post a comment.