Advertisement
Risonna

lab2_n9

Oct 29th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.40 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include<math.h>
  3. #include<iostream>
  4. using namespace std;
  5. int main()
  6. {
  7.     setlocale(LC_ALL, "");
  8.     cout << "а) ";
  9.     cout << "(a < b < c) && (a > 0)\n";
  10.     cout<<"б) ";
  11.     cout << "((a != b) && (a != c) && (b != c)) && ((c < a) && (c < b))\n";
  12.     cout << "в) ";
  13.     cout << "((x < 0) && (y < 0) && (z < 0)) || ((x >= 0 && x <= 1) || (y >= 0 && y <= 1) || (z >= 0 && z <= 1))\n";
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement