练习题3

#include<iostream>
using namespace std;
int main(){
    bool flag;
    flag=true;
    if(flag) cout<<false<<endl;
    return 0;
 }

#include<iostream>
using namespace std;
int main(){
 bool flag;
    flag=true;
    if(flag) cout<<true<<endl;
    return 0;
 }

 

 

 

posted on 2017-09-21 11:01  三叶癌  阅读(79)  评论(0)    收藏  举报

导航