若运行时输入:4.4<回车>,则以下程序的运行结果是

若运行时输入:4.4<回车>,则以下程序的运行结果是(   )。

#include<stdio.h>
int main()
{
	float costPrice,sellingPrice;
	printf("Enter cosPrice$:");
	scanf("%f",&costPrice);
	if(costPrice>=5)
	{
		sellingPrice=costPrice+costPrice*0.25;
		printf("Selling Price(0.25)$%6.2f",sellingPrice);
	}
	else
	{
		sellingPrice=costPrice+costPrice*0.30;
		printf("Selling Price(0.30)$%6.2f",sellingPrice);
		return 0;
	}
}
答案
第1空:Selling Price(0.30)$5.72

题目信息

题号:7378
题型:填空题
难度:普通