Friday, October 26, 2018

Uri 1048 solution in C | Salary Increase

/*Before seeing the code solution make sure that you have tried enough. Don’t copy- paste the whole code. Find out the logic. If you face any trouble, just inform me in comment.*/
#include<stdio.h>
main()
{
    float m,s,si;
    scanf("%f",&m);
    if(m>=0&&m<=400)
    {
        si=m*.15;
        s=m+si;

        printf("Novo salario: %.2f\nReajuste ganho: %.2f\nEm percentual: 15 %\n",s,si);
    }
   else if(m>400&&m<=800)
    {
        si=m*.12;
        s=m+si;

        printf("Novo salario: %.2f\nReajuste ganho: %.2f\nEm percentual: 12 %\n",s,si);
    }
    else if(m>800&&m<=1200)
    {
        si=m*.10;
        s=m+si;

        printf("Novo salario: %.2f\nReajuste ganho: %.2f\nEm percentual: 10 %\n",s,si);
    }
    else if(m>1200&&m<=2000)
    {
        si=m*.07;
        s=m+si;

        printf("Novo salario: %.2f\nReajuste ganho: %.2f\nEm percentual: 7 %\n",s,si);
    }
     else if(m>2000)
    {
        si=m*.04;
        s=m+si;

        printf("Novo salario: %.2f\nReajuste ganho: %.2f\nEm percentual: 4 %\n",s,si);
    }

}

 //Happy_Coding

No comments:

Post a Comment