#include <stdio.h>
int main()
{
int height = 175; //身高为175cm
int money = 1500000; //银行存款为150万
printf("是否符合条件:%d\n",hegiht>=180 && money>=1000000 ); //填写算式
return 0;
}明显是height拼写错了,其他都对
在正规场合下money的定义确实要精度特别高,但这个题你的第二个height拼写错了
money用float定义。
height拼错啦