Contributions wont calculate
Code:
#include <stdio.h>
#include <conio.h>
int main()
{ float tax;
float salary;
float taxable;
float taxmo;
float contributions;
float pension;
float ni;
float pensionmo;
float nimo;
printf("Please Enter Gross Salary\n");
scanf("%f", &salary);
contributions = 6/100*salary + 2/100*salary;
taxable = salary - contributions;
if (taxable <= 4000) { tax = 0 ; } else { tax = 0;
Comment