Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4. int main() {
  5. bool a;
  6. cout << "vvedite a: " << endl;
  7. cin >> a;
  8. bool b;
  9. cout << "vvedite b: " << endl;
  10. cin >> b;
  11. bool c;
  12. if (a == true && b == false) c = true;
  13. cout << c << endl;
  14. system ("pause");
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement