Which one as follows is use to express "the value is true when the x is in the range [-58,-40] and [40, 58], otherwise false" ( ).
A、(x>=-58)
&&(x<=-40)&&(x>=40)&&(x<=58);
B、(x>=
-58)||(x<=-40)||(x>=40)||(x<=58);
C、(x>=
-58)&&(x<=-40)||(x>=40)&&(x<=58);
D、(x>=
-58)||(x<=-40)&&(x>=40)||(x<=58)
发布时间:2025-09-26 22:58:30