int main()
{
double flowerprice;
printf("在一个月黑风高的夜晚");
printf("一个小男生用自己的钱买了一束花");
printf("女生问他多少钱");
printf("小男生说: ");
scanf("%lf", &flowerprice);
if(flowerprice > 9999999);
{
printf("女生直接晕了过去\n");
}
else if(flowerprice >= 100000 && flowerprice < 999999)
{
printf("明天就结婚\n");
}
else if(flowerprice >= 100 && flowerprice < 500 )
{
printf("我们不合适\n");
}
else
{
printf("莫欺少年穷\n");
}
C语言初学4
原文:https://www.cnblogs.com/wybblogs/p/12489382.html