🔒 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
  • 391
    Views
  • 3
    Participants
Last reply from:
zacha

Trending Topics

Online now

Members online
1,282
Guests online
4,148
Total visitors
5,430

Forum statistics

Threads
2,308,764
Posts
29,186,948
Members
1,191,199
Latest member
Burgir_niPapot
Back
Top