首页 > 代码库 > C++中 <iso646.h>头文件
C++中 <iso646.h>头文件
1 #include<iostream> 2 #include<iso646.h> 3 using namespace std; 4 int main(){ 5 int i = 5,j = 6,k=7; 6 if(i<j and j<k)cout<<"i<j and j<k"<<endl; 7 if(i<j or j<k)cout<<"i<j or j<k"<<endl; 8 }
iso646.h 头文件中包含许多宏定义
#define and &&
#define and_eq &=
#define bitand &
#define bitor |
#define compl ~
#define not !
#define not_eq !=
#define or ||
#define or_eq |=
#define xor ^
#define xor_eq ^=
所以可以使用一些英文单词来表示逻辑符。
C++中 <iso646.h>头文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。