问答详情
源自:3-6 关系运算符

我想用关系运算符判断

#include <stdio.h>

#include <stdlib.h>

int main()       //判断小明身体是否合格

{ int s>160,t<100; 

  

  scanf("小明身高%d\n体重%d\n",a,b); //小明身高165,体重101

  printf("且小明身体合格吗;%d",s>=a,b<t);

  

system("pause"); 

    

return 0;

}

请问哪里出错了

提问者:慕容6130333 2016-12-22 13:24

个回答

  • 诡辩君
    2016-12-22 13:54:31

    int s>160,t<100; 这里错了,赋值问题。可以改成:int s =160,t=100;