+ 1
Create a program that calculates the amount of tax on the salaries in the range of 5000 at the tax rate of 1 .5%
4 Answers
+ 2
Tax is not calculated using factorial.
+ 1
#include<stdio.h
int data(int num);
int main()
{
int x=5;
printf("The factorial of %d is %d",x,data(x));
Return(0);
}
if num(==1)
return (1);
else
return(num -1);
}
}
+ 1
Think about how you would calculate the percentage of an amount.
+ 1
Okay let me see