🔒 Closed C po pa help

Status
Not open for further replies.
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
 
Status
Not open for further replies.

Similar threads

About this Thread

  • 3
    Replies
  • 386
    Views
  • 3
    Participants
Last reply from:
zacha

Trending Topics

Online now

Members online
816
Guests online
1,704
Total visitors
2,520

Forum statistics

Threads
2,293,602
Posts
29,085,088
Members
1,207,903
Latest member
yourz1013
Back
Top