Shopping In MUMBAI

Are you searching for Discounts, offers, sale in Mumbai ? You are in the right place. MUMBAI, a shopping haven, has no dearth of great discounts and sales. This blog features the best MUMBAI shopping offers, sale, discounts and deals and bargains CURRENTLY GOING on in Mumbai plus a few free things thrown in on top. Don't wait for it because once they are gone, they are gone. Hurry!..By clicking the "Like" button you will receive a daily update of discounts, sale, offers going on in Mumbai. LIKE IT.... SHARE IT...njoY.

Wednesday, December 31, 2008

C Program to enter the sale value and printout the commission value

C Program to enter the sale value and printout the commission value

#include
#include
void main()
{
float salev,comv;
clrscr();
printf("\nEnter the sale value:");
scanf("%f",&salev);
if((salev>100)&&(salev<=1000))
{
comv=salev*(0.02);
printf("Commision=%0.2f",comv);
}
else if(salev>1000)
{
comv=salev*(0.03);
printf("Commission=%0.2f",comv);
}
else
printf("Commission=0",comv);
getch();
}

**************OUTPUT**************
Enter the sale value: 110
Commision=2.20

C Program to enter the sale value and printout the commission valueSocialTwist Tell-a-Friend

0 comments:

SUPPORT THIS BLOG