xt3-8.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main ( )
  4. { int a=3,b=4,c=5,x,y;
  5.   cout<<(a+b>c && b==c)<<endl;
  6.   cout<<(a||b+c && b-c)<<endl;
  7.   cout<<(!(a>b) && !c||1)<<endl;
  8.   cout<<(!(x=a) && (y=b) && 0)<<endl;
  9.   cout<<(!(a+b)+c-1 && b+c/2)<<endl;
  10.   return 0;
  11. }