Quyidagi dastur natijasini kiriting:
96. "VA" mantiqiy operatori II
#include <stdio.h>
int main() {
if (7 > -19 && 2 < -17 && -13 >= -2) {
printf("YES");
} else {
printf("NO");
}
}
def main():
if 7 > -19 and 2 < -17 and -13 >= -2:
print("YES")
else:
print("NO")
if __name__ == '__main__':
main()
#include <iostream>
int main() {
if (7 > -19 && 2 < -17 && -13 >= -2) {
std::cout << "YES";
} else {
std::cout << "NO";
}
}
public class Main {
public static void main(String[] args) {
if (7 > -19 && 2 < -17 && -13 >= -2) {
System.out.printf("YES");
} else {
System.out.printf("NO");
}
}
}
<?php
if (7 > -19 && 2 < -17 && -13 >= -2) {
printf("YES");
} else {
printf("NO");
}
Yechimni jo'natish uchun tizimga kirish lozim.
Tizimga kirish
Ushbu sahifaga havola:
https://itboom.uz/m96/
