• 2022-06-06 问题

    变量math和engl中存放了两门课的成绩。若两门课成绩均在60分以上(含60),则显示"pass;有一门低于60分则显示"fail",以下不能实现上述功能的程序段是( )。 A: if(math<60)if(engl<60)printf("fail\n");esleprintf("pass\n"); B: if(math<60)printf("fail\n");elseif(engl>=60)printf("pass\n");else printf("fail\n"); C: if((math<60)||(engl<60))printf("fail\n");elseprintf("pass\n"); D: if(math>=60)&&(engl>=60))printf("pass\n");elseprintf("fail\n");

    变量math和engl中存放了两门课的成绩。若两门课成绩均在60分以上(含60),则显示"pass;有一门低于60分则显示"fail",以下不能实现上述功能的程序段是( )。 A: if(math<60)if(engl<60)printf("fail\n");esleprintf("pass\n"); B: if(math<60)printf("fail\n");elseif(engl>=60)printf("pass\n");else printf("fail\n"); C: if((math<60)||(engl<60))printf("fail\n");elseprintf("pass\n"); D: if(math>=60)&&(engl>=60))printf("pass\n");elseprintf("fail\n");

  • 2022-06-06 问题

    变量math和engl中存放了两门课的成绩。若两门课成绩均在60分以上(含60),则显示&quot;pass;有一门低于60分则显示&quot;fail&quot;,以下不能实现上述功能的程序段是( )。 A: if(math&lt;60)if(engl&lt;60)printf(&quot;fail &quot;);esleprintf(&quot;pass &quot;); B: if(math&lt;60)printf(&quot;fail &quot;);elseif(engl&gt;=60)printf(&quot;pass &quot;);else printf(&quot;fail &quot;); C: if((math&lt;60)||(engl&lt;60))printf(&quot;fail &quot;);elseprintf(&quot;pass &quot;); D: if(math&gt;=60)&amp;&amp;(engl&gt;=60))printf(&quot;pass &quot;);elseprintf(&quot;fail &quot;);

    变量math和engl中存放了两门课的成绩。若两门课成绩均在60分以上(含60),则显示&quot;pass;有一门低于60分则显示&quot;fail&quot;,以下不能实现上述功能的程序段是( )。 A: if(math&lt;60)if(engl&lt;60)printf(&quot;fail &quot;);esleprintf(&quot;pass &quot;); B: if(math&lt;60)printf(&quot;fail &quot;);elseif(engl&gt;=60)printf(&quot;pass &quot;);else printf(&quot;fail &quot;); C: if((math&lt;60)||(engl&lt;60))printf(&quot;fail &quot;);elseprintf(&quot;pass &quot;); D: if(math&gt;=60)&amp;&amp;(engl&gt;=60))printf(&quot;pass &quot;);elseprintf(&quot;fail &quot;);

  • 1