This commit is contained in:
2026-02-28 17:05:12 +08:00
parent 181304d736
commit c03026824f
4 changed files with 74 additions and 3 deletions

13
比较运算符.cpp Normal file
View File

@@ -0,0 +1,13 @@
//
// Created by violet on 2026/2/28.
//
#include "iostream"
using namespace std;
int main() {
//==相等 !=不等 >大于 <小于 <=小于等于>=大于等于
int num1 =3;
int num2 =4;
bool r1 = (num1!=num2);
cout<<r1<<endl;
return 0;
}