1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Setler79 [48]
2 years ago
6

A company pays its salespeople on a commission basis. The salespepople receive $200 per week plus 9% of their gross sales for th

at week. For example, a salesperson who grosses $5,000 in sales in a week receives $200 plus 9% of $5,000 or a total of $650. c#
Computers and Technology
1 answer:
Maurinko [17]2 years ago
6 0

Answer:

using System;

     

public class Program

{

public static void Main()

{

 Console.Write("Enter gross sales: ");

 double sales = Convert.ToDouble(Console.ReadLine());

 double payment = 200 + (sales*0.09);

 Console.Write("total payment for this week is: "+payment);

}

}

Explanation:

May I suppose that you want a program in C# to calculate the week payment? in that case let review a solution:

using System;

     

public class Program

{

public static void Main()

{

//input the gross sales of the week

 Console.Write("Enter gross sales: ");  

//convert the string data to double

 double sales = Convert.ToDouble(Console.ReadLine());

//use described algorithm to calculate the payment

 double payment = 200 + (sales*0.09);

//show the value in console

 Console.Write("total payment for this week is: "+payment);

}

}

You might be interested in
What is batch processing?
umka2103 [35]
Batch processing usually refers to saving up requests to do a task (jobs), and doing them all at once, in a batch.  Batch processing was more common with mainframe computers that had very limited resources and couldn't switch between datasets (think tapes with a capacity in megabytes) easily.
7 0
3 years ago
Which type of operating system is usually used in personal computers?
Vitek1552 [10]

Answer:

I think A modern operating system is usually used in personal computers

4 0
3 years ago
Given the following snippet of code, answer the following two questions based on the code: typedef enum {Sun, Mon, Tue, Wed, Thu
ANEK [815]

Answer:

1) The value of x will be 6.

2) The value of y will be 7.

Explanation:

1) The value of x will be 6.  

The enum values are labeled by default from 1. This means that Sun = 1, Mon = 2, Tue = 3 and so on.  

So, x = Mon = 2 and y = Sat = 6  

x increases up to y = 6 in the while loop.  

and then y also increments by 1.  

2)So the value of y = 7.  

You will need actual printf("Sun") or printf("Mon") for printing the actual text for the enum.

7 0
3 years ago
What is one way to measure technological progress?
OLga [1]
You can measure it by the amount of automatisation. The bigger technological process the easier it is to automate systems.
4 0
3 years ago
Which of the following is Not included in the Web Accessibility Initiative? Don’t rely on color alone.
Doss [256]
I'm pretty sure it's D. Provide discount software for the underprivileged.
3 0
3 years ago
Other questions:
  • Write a for loop to print all elements in courseGrades, following each element with a space (including the last). Print forwards
    7·1 answer
  • Unit 3 Computer Programming Study Guide
    6·1 answer
  • How many computers/laptop's suported windows 10 pro with a game in vr?
    9·2 answers
  • The series of events that make up a story is called
    6·2 answers
  • 1. The best program to present numerical data in would be ____. a. Access c. PowerPoint b. Excel d. Word
    6·1 answer
  • How we know that how many domain exist in window server 2012?
    14·1 answer
  • Services such as water, electricity, and phone communications are called:
    7·1 answer
  • What types of company functions are aided by ERP?
    9·1 answer
  • Why do you want to work from our company?​
    9·2 answers
  • What technology does kroger’s edge technology and amazon’s just walk out technology leverage?.
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!