标签:c语言练习
今天我要写的是一段计算水费的程序
`#include<stdio.h>
int main(void)
{
int i;//定义自变量
double cost;//定义因变量
cost = 0;
printf("请输入用水量:");//程序提示
scanf_s("%d", &i);//用户输入用水量
if (i < 0)
{
printf("0");
}
else if(i<=15)
{
cost = (4.0*i) / 3;
printf("cost=%lf", cost);
}
else
{
cost = 2.5*i - 10.5;
printf("cost=%lf", cost);
}//多分枝语句
return 0;
}`
标签:c语言练习
原文地址:http://blog.51cto.com/13509526/2091419