This commit is contained in:
2026-03-02 18:22:06 +08:00
parent 6c23816ec2
commit 109ed8def8

View File

@@ -24,5 +24,11 @@ int main() {
string s5 = "a";//c++风格字符串
string s6 = "a";
cout<<(s5== s6)<<endl;
cout<<(1==1 && 2==2)<<endl;
cout<<(1==2 && 2==2)<<endl;
cout<<(1==2 || 2==3)<<endl;
cout<<(1==2 || 2==2)<<endl;
bool s123 = 100;
cout<<(s123)<<endl;
return 0;
}