• 2021-04-14 问题

    Write down the corresponding words. the 1st month of the year _________ the 2nd month of the year _________ the 3rd month of the year___________ the 4th month of the year___________ the 5th month of the year___________ the 6th month of the year___________ the 7th month of the year___________ the 8th month of the year___________ the 9th month of the year___________ the 10th month of the year___________ the 11th month of the year___________ the 12th month of the year___________

    Write down the corresponding words. the 1st month of the year _________ the 2nd month of the year _________ the 3rd month of the year___________ the 4th month of the year___________ the 5th month of the year___________ the 6th month of the year___________ the 7th month of the year___________ the 8th month of the year___________ the 9th month of the year___________ the 10th month of the year___________ the 11th month of the year___________ the 12th month of the year___________

  • 2022-06-19 问题

    The number of students participating in online courses varies  . A: year to year B: year and year C: year by year D: year on year

    The number of students participating in online courses varies  . A: year to year B: year and year C: year by year D: year on year

  • 2022-06-07 问题

    This year is the year of Gengzi, and next year is the year of ___________.

    This year is the year of Gengzi, and next year is the year of ___________.

  • 2022-06-07 问题

    判定year是否为闰年的表达式是 A: year % 400 == 0 or year % 4 == 0 and year % 100 <> 0 B: year % 400 == 0 or year % 4 == 0 , year % 100 != 0 C: year % 400 == 0 or year % 4 == 0 and year % 100 != 0 D: year % 400 == 0 or year % 4 == 0 , year % 100 <> 0

    判定year是否为闰年的表达式是 A: year % 400 == 0 or year % 4 == 0 and year % 100 <> 0 B: year % 400 == 0 or year % 4 == 0 , year % 100 != 0 C: year % 400 == 0 or year % 4 == 0 and year % 100 != 0 D: year % 400 == 0 or year % 4 == 0 , year % 100 <> 0

  • 2022-06-03 问题

    21() A: next year B: that year C: this year D: by year

    21() A: next year B: that year C: this year D: by year

  • 2022-05-29 问题

    使用变量year代表年份,以下表示判断year是否为闰年的布尔表达式是 。 A: (year % 4 == 0) and (not(year % 100 == 0)) or (year % 400 == 0) B: (year % 4 == 0) and (not(year % 400 == 0)) or (year % 100 == 0) C: (year % 4 == 0) and (year % 100 == 0) or (year % 400 == 0) D: (year % 4 == 0) or (not(year % 100 == 0)) and (year % 400 == 0)

    使用变量year代表年份,以下表示判断year是否为闰年的布尔表达式是 。 A: (year % 4 == 0) and (not(year % 100 == 0)) or (year % 400 == 0) B: (year % 4 == 0) and (not(year % 400 == 0)) or (year % 100 == 0) C: (year % 4 == 0) and (year % 100 == 0) or (year % 400 == 0) D: (year % 4 == 0) or (not(year % 100 == 0)) and (year % 400 == 0)

  • 2022-07-27 问题

    题:(拓展)下面哪些表达式能够判断某年year不是闰年。 A: not(( year%4==0 and year%100 !=0 ) or ( year%400==0 )) B: not( year%4==0 and year%100 !=0 ) and not ( year%400==0 ) C: year%4!=0 or year%100 ==0 and ( year%400 !=0 ) D: year%4==0 and year%100 !=0 or ( year%400==0 )

    题:(拓展)下面哪些表达式能够判断某年year不是闰年。 A: not(( year%4==0 and year%100 !=0 ) or ( year%400==0 )) B: not( year%4==0 and year%100 !=0 ) and not ( year%400==0 ) C: year%4!=0 or year%100 ==0 and ( year%400 !=0 ) D: year%4==0 and year%100 !=0 or ( year%400==0 )

  • 2022-07-27 问题

    判断year变量为闰年的表达式为()。 A: year%4==0&amp;&amp;year%100!=0&amp;&amp;year%400==0 B: year%4==0||year%100!=0&amp;&amp;year%400==0 C: year%4=0&amp;&amp;year%100<;>;0||year%400=0 D: year%4==0&amp;&amp;year%100!=0||year%400==0

    判断year变量为闰年的表达式为()。 A: year%4==0&amp;&amp;year%100!=0&amp;&amp;year%400==0 B: year%4==0||year%100!=0&amp;&amp;year%400==0 C: year%4=0&amp;&amp;year%100<;>;0||year%400=0 D: year%4==0&amp;&amp;year%100!=0||year%400==0

  • 2021-04-14 问题

    【单选题】闰年能被400整除或者能被4整除但不能被100整除。以下_______不是判定year是闰年的正确表达式。 A. year%400==0 || year%4==0 && year%100!=0 B. !(year%400) || ( !(year%4) && year%100) C. !year%400 || !year%4 && year%100 D. year%400==0 || (year%4==0 && year%100!=0)

    【单选题】闰年能被400整除或者能被4整除但不能被100整除。以下_______不是判定year是闰年的正确表达式。 A. year%400==0 || year%4==0 && year%100!=0 B. !(year%400) || ( !(year%4) && year%100) C. !year%400 || !year%4 && year%100 D. year%400==0 || (year%4==0 && year%100!=0)

  • 2022-07-27 问题

    用变量year表示某一年,判别不是闰年的逻辑表达式有( ). A: (year%4||!(year%100))&&year%400 B: 61519 C: (year%4==0&&year%100!=0)||year%400==0 D: !((year%4==0&&year%100!=0)||year%400==0) E: (year%4!=0||year%100==0)&&year%400!=0

    用变量year表示某一年,判别不是闰年的逻辑表达式有( ). A: (year%4||!(year%100))&&year%400 B: 61519 C: (year%4==0&&year%100!=0)||year%400==0 D: !((year%4==0&&year%100!=0)||year%400==0) E: (year%4!=0||year%100==0)&&year%400!=0

  • 1 2 3 4 5 6 7 8 9 10