What's new

C po pa help

zacha

Forum Veteran
Established
Joined
Sep 5, 2021
Posts
776
Reaction
56
Points
684
1652899567555.png

ito po mga paps
 

Attachments

C:
#include<stdio.h>


void main()
{

    float salary, tax=0;
    printf("Enter Gross Monthly Salary: ");
    scanf_s("%f", &salary);


    if (salary <= 20832)//S1
    {
        tax = 0;
    }
    if ((salary > 20832) && (salary < 33333))//S2
    {
        tax = (salary - 20833) * 0.20;
    }
    if ((salary > 33332) && (salary < 66667))//S3
    {
        tax = 2500 + (salary - 33333) * 0.25;
    }
    if ((salary > 66666) && (salary < 166667))//S4
    {
        tax = 10833.33 + (salary - 66667) * 0.30;
    }
    if (salary > 166666)
    {
        tax = 40833.33 + (salary - 166667) * 0.32;
    }


    printf("\n Tax is %.2f", tax);
    printf("\n Net monthly salary: %.2f", salary - tax);

    getch();
    getch();
}

Di ako sure sa formula ha
 
C:
#include<stdio.h>


void main()
{

    float salary, tax=0;
    printf("Enter Gross Monthly Salary: ");
    scanf_s("%f", &salary);


    if (salary <= 20832)//S1
    {
        tax = 0;
    }
    if ((salary > 20832) && (salary < 33333))//S2
    {
        tax = (salary - 20833) * 0.20;
    }
    if ((salary > 33332) && (salary < 66667))//S3
    {
        tax = 2500 + (salary - 33333) * 0.25;
    }
    if ((salary > 66666) && (salary < 166667))//S4
    {
        tax = 10833.33 + (salary - 66667) * 0.30;
    }
    if (salary > 166666)
    {
        tax = 40833.33 + (salary - 166667) * 0.32;
    }


    printf("\n Tax is %.2f", tax);
    printf("\n Net monthly salary: %.2f", salary - tax);

    getch();
    getch();
}

Di ako sure sa formula ha
salamat paps

C:
#include<stdio.h>


void main()
{

    float salary, tax=0;
    printf("Enter Gross Monthly Salary: ");
    scanf_s("%f", &salary);


    if (salary <= 20832)//S1
    {
        tax = 0;
    }
    if ((salary > 20832) && (salary < 33333))//S2
    {
        tax = (salary - 20833) * 0.20;
    }
    if ((salary > 33332) && (salary < 66667))//S3
    {
        tax = 2500 + (salary - 33333) * 0.25;
    }
    if ((salary > 66666) && (salary < 166667))//S4
    {
        tax = 10833.33 + (salary - 66667) * 0.30;
    }
    if (salary > 166666)
    {
        tax = 40833.33 + (salary - 166667) * 0.32;
    }


    printf("\n Tax is %.2f", tax);
    printf("\n Net monthly salary: %.2f", salary - tax);

    getch();
    getch();
}

Di ako sure sa formula ha
pwede pa tulong paps nahihirapan kasi ako sa subject na to. meron akong bagong post. salamat paps
 
Last edited:

Similar threads

Back
Top