课堂实验(电费)

#include<stdio.h>
int main()
{
    int n,i;
    double x,y;
    
    printf("Enter n:");
    scanf("%d",&n);

    for(i=1;i<=n;i++){
        printf("Enter x:");
        scanf("%lf",&x);
        if(x<=0)
        printf("输入错误,请重新输入\n");
        else if(x<=50){
            y=0.53*x;
         }
         else{
            y=26.5+0.58*(x-50);
         }
         printf("y=%.3f\n",y);
    }

    return 0;
}

 

posted @ 2013-10-17 09:01  执于一念  阅读(280)  评论(0编辑  收藏  举报