ETH官方钱包

切換
舊版
前往
大廳
主題

C語言:銷售傭金計算工具

查理 | 2013-09-10 08:35:51 | 巴幣 2 | 人氣 403


#include <stdio.h>

int main()
{
    float beginning=200;        //基本薪資
    float salesD;                    //當周銷售
    float salary;                     //實際可領(lǐng)
    float per=0.09;                //%數(shù)

    printf("Enter sales in dollars (-1 to end):");
    scanf("%f", &salesD);

    while(salesD !=-1){
        salary=beginning+salesD*per;
        printf("Salary is:%.2f\n",salary);

        printf("Enter account number (-1 to end):");
        scanf("%f", &salesD);
    }
    system("pause");
    return 0;
}

創(chuàng)作回應(yīng)

更多創(chuàng)作