Advertisement
Kacper_Michalak

Zadanie 5

Oct 27th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int x;
  8.     int y;
  9.     int suma;
  10.  
  11.     cout<<"Podaj wartość x: "<<endl;
  12.     cin>>x;
  13.     cout<<"Podaj wartość y: "<<endl;
  14.     cin>>y;
  15.     suma = x + y;
  16.     cout<<"Suma liczb x: " << x << " i y: " << y <<" wynosi: " << suma << endl;
  17.  
  18.  
  19.     return 0;
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement