1053 住房空置率 (20 分)

#include

int main()
{
    int N, D;
    double e;
    scanf("%d%lf%d", &N, &e, &D);

    int i, j;
    int mayEmpty=0, empty=0;

    for(i=0; i K/2)
        {

            if(K>D)
            {
                empty++;
            }
            else
                mayEmpty++;
        }
    }

    double mayEmptyRate = mayEmpty * 100 / N;
    double emptyRate = empty *100 / N;

    printf("%.1lf%% ", mayEmptyRate);
    printf("%.1lf%%",  emptyRate);
    return 0;
}

你可能感兴趣的:(1053 住房空置率 (20 分))