grodek118

Untitled

Jul 2nd, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. cout << "Podaj liczbe: ";
  8. int zmienna;
  9. cin >> zmienna;
  10. cout << "Obliczam 3 + " << zmienna << " * 4 = " << 3 + zmienna * 4 << endl;
  11. cout << "Obliczam (3 + " << zmienna << ") * 4 = " << ( 3 + zmienna) * 4 << endl;
  12.  
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment