考点导航
[ 所有信息 ][ 单选题 ] 列表
  • 能与带负电荷的土壤胶体吸附的阳离子进行交换的是( )。
  • ( )是指与植物体分离了的部分具有恢复其余部分的能力。
  • 水稻根系吸收N、P、K的最适温度为( )。
  • 执行下列语句后的输出结果是_________。
    int x=5;
    if( x=3 )
    printf(""%d\n"", x);
    else
    printf(""%d\n"", x+2);"
  • 下列程序的输出结果是( )。
    main()
    {
    int x=1,y=0,a=0,b=0;
    switch(x)
    {
    case 1:switch(y)
    {
    case 0:a++;break;
    case 1:b++;break;
    }
    case 2:a++;b++;break;
    case 3:a++;b++;break;
    }
    printf("a=%d,b=%d\n",a,b);
    }
  • More and more people in Wuhan choose to go to work______subway.
  • Mary has a bad cold. She has to stay in _____ bed.
  • If you are kind to _____ others, maybe you will be helped someday,
  • 能被作物直接吸收,肥效较快的磷肥是( )。
  • ( )是促进农业发展的最活跃的要素。
  • 稻麦轮作时,磷肥的最佳施用时间是( )。
  • 若想通过输入语句“scanf("a=%d,b=%d", &a,&b);”给a赋值1,给b赋值2,则输入数据的形式应该是_________。
  • 下列程序段的输出结果是( )。
    float x=213.82631;
    printf("%3d",(int)x);
  • The students in Class Five are more interested in English than _______in Class Four.
  • It is said that potato chips _____ by mistake a century ago.
  • He _____Wuhan in 1998, and since then he _____ in Beijing.
  • 目前已明确的植物生长发育的微量营养元素有( )。
  • ( )促进植物生根。
  • 玉米制种田采用空间隔离,要求( )米以内不得种植其他玉米品种。
  • 下列程序运行时如果从键盘输入“7 9 8”,则运行结果是_________。
    int main( )
    {
    int a,b,c,x,y;
    scanf(""%d%d%d"", &a,&b,&c);
    if(a>b) {x=a;y=b;}
    else {x=b; y=a; }
    if( x<c ) x=c;
    if( y>c ) y=c;
    printf(""x=%d,y=%d\n"", x,y);
    return 0;
    }