Foundationda 7-dars

isoqjon_nematov_d21104e35

isoqjon nematov

Posted on August 20, 2024

Foundationda 7-dars

C++ kodlash tilida:

include

using namespace std;
int main(){

int main() { 

int a= 7, b= 7;

bool c = (a < b);
bool c1 = (a <= b);
bool c2 = (a > b);
bool c3 = (a >= b);
bool c4 = (a == b);
bool c5 = (a != b);
cout << c << c1 << c2 << c3 << c4 << c5;
return 0;
Enter fullscreen mode Exit fullscreen mode

}

💖 💪 🙅 🚩
isoqjon_nematov_d21104e35
isoqjon nematov

Posted on August 20, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related