my assignment is to find the commission of each monthly sales,how can i get the right answer?
monthly sales is 0-19,999(4%)/ 20,000-29,999(5%) /30,000-39,999(6%) / 40,000-49,999(7%)
50,000-above(9%)
using if/else statement

Hi genecasaminiano, welcome to Daniweb.
Read about the if-statement
To get you started, do something like:

if (sales < 19999)
{
    commission = 4;
}
else if (  //. . . your turn

Success!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.