慕粉1802578667
2017-04-13 13:00
#include <stdio.h>
int main()
{
int height = 175; //身高为175cm
double money = 1500000; //银行存款为150万
printf("是否符合条件:%d\n", ); //填写算式
return 0;
}
#include <stdio.h>
int main()
{
int height = 185; //身高为175cm
double money = 1500000; //银行存款为150万
if (height >=180 && money >= 100000)
{
printf("符合条件:\n身高:%d,银行存款:%.2lf\n", height, money);
}
else
{
printf("不符合条件:\n身高:%d,银行存款:%.2lf\n", height, money);
}
return 0;
}
#include <stdio.h>
int main()
{
int height = 175; //身高为175cm
double money = 1500000; //银行存款为150万
printf("是否符合条件:%d\n", height>=180&&money>=1000000 ); //填写算式
return 0;
}
C语言入门
926025 学习 · 20793 问题
相似问题