Advertisement
Reykez

Untitled

Oct 8th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. cin >> a;
  2. cin >> b;
  3. if (a==b) {
  4. cout << "Jest rowne!";
  5. } else {
  6. cout << "Nie jest rowne!";
  7. }
  8.  
  9.  
  10. // TUTAJ DRUGA OPCJA!!!!!
  11.  
  12. if (a==b) {
  13. // costam
  14. } else if (a!=b) {
  15. // costam
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement