" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
int main()
{
int x = 5;
int y = 7;
cout << "Dodawanie: " << x+y << endl;
cout << "Odejmowanie: " << x-y << endl;
cout << "Dzielenie: " << x/y << endl; //To akurat powinno sie robic na zmiennych double anizeli int
return 0;
}