Advertisement
playridstudio

kod2

Oct 30th, 2020
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int n = 3;
  9.  
  10. if (n % 2 == 0) {
  11. cout << "Liczba jest parzysta" << endl;
  12. }
  13. else {
  14. cout << "Liczba nie jest parzysta" << endl;
  15. }
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement