C中的问题
#include <stdio.h> int main() { int height = 175; //身高为175cm double money = 1500000; //银行存款为150万 printf("是否符合条件:%d\n",height>=180&&money>=1000000); //填写算式 return 0; } 我将height>=180&&money>=1000000改成(height>=180&&money>=1000000)为啥就不能编译成功了??
2015-04-09
举报